mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-22 08:56:34 +03:00
Applied Darwin patch from #70.
This commit is contained in:
parent
1549c2611c
commit
4316ddf30a
4
setup.py
4
setup.py
|
@ -170,9 +170,13 @@ class psycopg_build_ext(build_ext):
|
|||
|
||||
fink installs lots of goodies in /sw/... - make sure we check there
|
||||
"""
|
||||
self.include_dirs.append("/sw/include")
|
||||
self.include_dirs.append("/sw/include/postgresql")
|
||||
self.include_dirs.append("/sw/include/postgresql/server")
|
||||
self.library_dirs.append("/sw/lib")
|
||||
self.include_dirs.append("/opt/local/include")
|
||||
self.include_dirs.append("/opt/local/include/postgresql")
|
||||
self.include_dirs.append("/opt/local/include/postgresql/server")
|
||||
self.library_dirs.append("/opt/local/lib")
|
||||
self.library_dirs.append("/usr/lib")
|
||||
self.libraries.append('ssl')
|
||||
|
|
Loading…
Reference in New Issue
Block a user