From 62ba863582fcc2e222b5b45fb42f399a4bcf55de Mon Sep 17 00:00:00 2001 From: drochner Date: Wed, 7 Mar 2001 12:14:59 +0000 Subject: 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-?. --- textproc/pyxml/patches/patch-aa | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 textproc/pyxml/patches/patch-aa (limited to 'textproc/pyxml/patches') 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 + )) -- cgit v1.2.3