summaryrefslogtreecommitdiff
path: root/databases/py-PgSQL/patches/patch-ab
diff options
context:
space:
mode:
Diffstat (limited to 'databases/py-PgSQL/patches/patch-ab')
-rw-r--r--databases/py-PgSQL/patches/patch-ab25
1 files changed, 25 insertions, 0 deletions
diff --git a/databases/py-PgSQL/patches/patch-ab b/databases/py-PgSQL/patches/patch-ab
new file mode 100644
index 00000000000..2d7f86f5d7a
--- /dev/null
+++ b/databases/py-PgSQL/patches/patch-ab
@@ -0,0 +1,25 @@
+$NetBSD: patch-ab,v 1.1 2004/01/17 13:16:06 recht Exp $
+
+--- setup.py.orig 2004-01-17 14:10:14.000000000 +0100
++++ setup.py 2004-01-17 14:11:27.000000000 +0100
+@@ -82,7 +82,7 @@
+
+ def main():
+ # Set this to 1 if you need to use your own settings
+- USE_CUSTOM = 0
++ USE_CUSTOM = 1
+
+ # Default settings, may be overriden for specific platforms
+ pypgsql_rt_dirs = None
+@@ -98,8 +98,9 @@
+ "port/strtok.c"]
+
+ if USE_CUSTOM:
+- include_dirs = YOUR_LIST_HERE
+- library_dirs = YOUR_LIST_HERE
++ LOCALBASE = os.environ.get('LOCALBASE', '/usr/pkg')
++ include_dirs = ['%s/include/pgsql' % LOCALBASE]
++ library_dirs = ['%s/lib' % LOCALBASE]
+ elif sys.platform == "linux2":
+ include_dirs = ["/usr/include", "/usr/include/postgresql",
+ "/usr/include/pgsql"]