From: Billy G. A. <bal...@us...> - 2005-03-06 04:56:43
|
Update of /cvsroot/pypgsql/pypgsql In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10896 Modified Files: setup.py Log Message: 05MAR2005 bga Fixed bugs #1154792 1154791. Index: setup.py =================================================================== RCS file: /cvsroot/pypgsql/pypgsql/setup.py,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** setup.py 10 May 2004 03:34:03 -0000 1.23 --- setup.py 6 Mar 2005 04:56:26 -0000 1.24 *************** *** 45,48 **** --- 45,50 ---- # Date Ini Description | # --------- --- ------------------------------------------------------- | + # 05MAR2004 bga Added /usr/include/postgresql to includes. | + # [Bug #1154791] | # 25APR2003 gh Added changes for registration with the Python Package | # index (PyPI) (http://python.org/pypi). | *************** *** 102,106 **** library_dirs = YOUR_LIST_HERE elif sys.platform == "linux2": ! include_dirs = ["/usr/include", "/usr/local/pgsql/include"] library_dirs = ["/usr/lib"] --- 104,108 ---- library_dirs = YOUR_LIST_HERE elif sys.platform == "linux2": ! include_dirs = ["/usr/include", "/usr/local/pgsql/include", "/usr/include/postgresql"] library_dirs = ["/usr/lib"] |