mirror of
https://github.com/psycopg/psycopg2.git
synced 2025-01-31 09:24:07 +03:00
MacOS X build patch.
This commit is contained in:
parent
bd5b76d0e4
commit
bbb6c8f22c
|
@ -1,3 +1,7 @@
|
|||
2005-2-7 Federico Di Gregorio <fog@initd.org>
|
||||
|
||||
* setup.py: added patch by Valentino Volonghi to build on MacOS X.
|
||||
|
||||
2005-01-29 Federico Di Gregorio <fog@debian.org>
|
||||
|
||||
* psycopg/pqpath.c (_pq_fetch_tuples): fixed scale-related
|
||||
|
|
7
setup.py
7
setup.py
|
@ -102,7 +102,12 @@ if sys.platform == "darwin":
|
|||
# fink installs lots of goodies in /sw/... - make sure we check there
|
||||
include_dirs.append("/sw/include/postgresql")
|
||||
library_dirs.append("/sw/lib")
|
||||
|
||||
include_dirs.append("/opt/local/include/postgresql")
|
||||
library_dirs.append("/opt/local/lib")
|
||||
library_dirs.append("/usr/lib")
|
||||
libraries.append('ssl')
|
||||
libraries.append('crypto')
|
||||
|
||||
# sources
|
||||
|
||||
sources = [
|
||||
|
|
Loading…
Reference in New Issue
Block a user