summaryrefslogtreecommitdiff
path: root/textproc/pyxml/patches
diff options
context:
space:
mode:
authordrochner <drochner@pkgsrc.org>2001-03-07 12:14:59 +0000
committerdrochner <drochner@pkgsrc.org>2001-03-07 12:14:59 +0000
commit62ba863582fcc2e222b5b45fb42f399a4bcf55de (patch)
treedede612d79b8c333ce9435275bda7fe5d2d1bdec /textproc/pyxml/patches
parent6be8675f53ebc1c72b876f72a6da42abf14c77b3 (diff)
downloadpkgsrc-62ba863582fcc2e222b5b45fb42f399a4bcf55de.tar.gz
The PyXML package is a collection of libraries to process XML with Python. It
contains, among other things xmlproc: a validating XML parser. sgmlop: a C helper module that can speed-up xmllib.py and sgmllib.py by a factor of 5. PySAX: SAX 1 and SAX2 libraries with drivers for most of the parsers. 4DOM: A fully compliant DOM Level 2 implementation javadom: An adapter from Java DOM implementations to the standard Python DOM binding. pulldom: a DOM implementation that supports lazy instantiation of nodes. marshal: a module with several options for serializing Python objects to XML, including WDDX and XML-RPC. unicode: a helper module for Python 1.5 users who need conversions between UTF-8 and ISO-8859-?.
Diffstat (limited to 'textproc/pyxml/patches')
-rw-r--r--textproc/pyxml/patches/patch-aa21
1 files changed, 21 insertions, 0 deletions
diff --git a/textproc/pyxml/patches/patch-aa b/textproc/pyxml/patches/patch-aa
new file mode 100644
index 00000000000..808e2b93d63
--- /dev/null
+++ b/textproc/pyxml/patches/patch-aa
@@ -0,0 +1,21 @@
+$NetBSD: patch-aa,v 1.1.1.1 2001/03/07 12:14:59 drochner Exp $
+
+--- setup.py.orig Sun Feb 25 19:14:48 2001
++++ setup.py Wed Mar 7 10:52:05 2001
+@@ -56,7 +56,7 @@
+ return 0
+
+ def get_expat_prefix():
+- for p in ("/usr", "/usr/local"):
++ p = os.getenv("PREFIX")
+ incs = os.path.join(p, "include")
+ libs = os.path.join(p, "lib")
+ if os.path.isfile(os.path.join(incs, "expat.h")) \
+@@ -99,6 +99,7 @@
+ define_macros=define_macros,
+ include_dirs=include_dirs,
+ library_dirs=library_dirs,
++ runtime_library_dirs=library_dirs,
+ libraries=libraries,
+ sources=sources
+ ))