summaryrefslogtreecommitdiff
path: root/textproc/pyxml/patches
diff options
context:
space:
mode:
authordrochner <drochner@pkgsrc.org>2001-05-14 16:27:08 +0000
committerdrochner <drochner@pkgsrc.org>2001-05-14 16:27:08 +0000
commitd0e04410c02cc461723df9e149d5b5412043b02e (patch)
tree6f6126b973301035acd5d8d73917aa50a002621e /textproc/pyxml/patches
parentc8124ca977bd5c829566c6e6174611dc6d51decc (diff)
downloadpkgsrc-d0e04410c02cc461723df9e149d5b5412043b02e.tar.gz
-use USE_PYTHON
-update to 0.6.5. This is a bug fix release only, according to the original announcement
Diffstat (limited to 'textproc/pyxml/patches')
-rw-r--r--textproc/pyxml/patches/patch-aa21
1 files changed, 0 insertions, 21 deletions
diff --git a/textproc/pyxml/patches/patch-aa b/textproc/pyxml/patches/patch-aa
deleted file mode 100644
index 808e2b93d63..00000000000
--- a/textproc/pyxml/patches/patch-aa
+++ /dev/null
@@ -1,21 +0,0 @@
-$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
- ))