mirror of
https://github.com/psycopg/psycopg2.git
synced 2025-11-21 01:55:15 +03:00
Merge 99262a2b97 into f8362a5261
This commit is contained in:
commit
d721c1e16e
6
setup.py
6
setup.py
|
|
@ -72,6 +72,7 @@ Operating System :: Unix
|
||||||
version_flags = ['dt', 'dec']
|
version_flags = ['dt', 'dec']
|
||||||
|
|
||||||
PLATFORM_IS_WINDOWS = sys.platform.lower().startswith('win')
|
PLATFORM_IS_WINDOWS = sys.platform.lower().startswith('win')
|
||||||
|
PLATFORM_IS_LINUX = sys.platform.lower().startswith('linux')
|
||||||
|
|
||||||
|
|
||||||
class PostgresConfig:
|
class PostgresConfig:
|
||||||
|
|
@ -366,7 +367,10 @@ For further information please check the 'doc/src/install.rst' file (also at
|
||||||
self.libraries.append("pq")
|
self.libraries.append("pq")
|
||||||
|
|
||||||
try:
|
try:
|
||||||
self.library_dirs.append(pg_config_helper.query("libdir"))
|
pg_config_libdir = pg_config_helper.query("libdir")
|
||||||
|
self.library_dirs.append(pg_config_libdir)
|
||||||
|
if PLATFORM_IS_LINUX:
|
||||||
|
self.rpath.append(pg_config_libdir)
|
||||||
self.include_dirs.append(pg_config_helper.query("includedir"))
|
self.include_dirs.append(pg_config_helper.query("includedir"))
|
||||||
self.include_dirs.append(pg_config_helper.query("includedir-server"))
|
self.include_dirs.append(pg_config_helper.query("includedir-server"))
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user