mirror of
https://git.freebsd.org/ports.git
synced 2025-06-08 14:20:33 -04:00
postgresql dist, and while postgresql was version 7.3.5, PyGreSQL's own version just bumped from 3.3 to 3.4. Hence portepoch. PR: ports/61597 Submitted by: Palle Girgensohn <girgen@pingpong.net> (maintainer)
13 lines
459 B
Python
13 lines
459 B
Python
--- setup.py~ Tue Jan 13 13:29:57 2004
|
|
+++ setup.py Tue Jan 13 16:14:50 2004
|
|
@@ -30,8 +30,8 @@
|
|
optional_libs=[ 'libpqdll', 'wsock32', 'advapi32' ]
|
|
data_files = [ 'libpq.dll' ]
|
|
else:
|
|
- include_dirs=['/usr/include/pgsql']
|
|
- library_dirs=['/usr/lib/pgsql']
|
|
+ include_dirs=['%%LOCALBASE%%/include', '%%LOCALBASE%%/include/postgresql', '%%LOCALBASE%%/include/postgresql/server']
|
|
+ library_dirs=['%%LOCALBASE%%/lib']
|
|
optional_libs=['pq']
|
|
data_files = []
|
|
|