mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-22 17:06:33 +03:00
Added some clarifications and Mandrake example to setup.cfg.
This commit is contained in:
parent
6ad551796c
commit
3f63c53fd0
|
@ -1,5 +1,7 @@
|
||||||
2005-06-18 Federico Di Gregorio <fog@initd.org>
|
2005-06-18 Federico Di Gregorio <fog@initd.org>
|
||||||
|
|
||||||
|
* setup.cfg: some clarifications and include_dirs example for Mandrake.
|
||||||
|
|
||||||
* ZPsycopgDA/DA.py: DTMLFile -> HTMLFile everywhere to fix zope cut&paste
|
* ZPsycopgDA/DA.py: DTMLFile -> HTMLFile everywhere to fix zope cut&paste
|
||||||
problems.
|
problems.
|
||||||
|
|
||||||
|
|
11
setup.cfg
11
setup.cfg
|
@ -1,5 +1,4 @@
|
||||||
[build_ext]
|
[build_ext]
|
||||||
|
|
||||||
define=PSYCOPG_EXTENSIONS,PSYCOPG_DISPLAY_SIZE,HAVE_PQFREEMEM,HAVE_PQPROTOCOL3
|
define=PSYCOPG_EXTENSIONS,PSYCOPG_DISPLAY_SIZE,HAVE_PQFREEMEM,HAVE_PQPROTOCOL3
|
||||||
# PSYCOPG_DEBUG can be added to enable verbose debug information
|
# PSYCOPG_DEBUG can be added to enable verbose debug information
|
||||||
# PSYCOPG_OWN_QUOTING can be added above but it is deprecated
|
# PSYCOPG_OWN_QUOTING can be added above but it is deprecated
|
||||||
|
@ -8,11 +7,15 @@ define=PSYCOPG_EXTENSIONS,PSYCOPG_DISPLAY_SIZE,HAVE_PQFREEMEM,HAVE_PQPROTOCOL3
|
||||||
use_pydatetime=1
|
use_pydatetime=1
|
||||||
|
|
||||||
# include_dirs is the preferred method for locating postgresql headers,
|
# include_dirs is the preferred method for locating postgresql headers,
|
||||||
# but some extra checks on sys.platform will still be done in setup.py
|
# but some extra checks on sys.platform will still be done in setup.py.
|
||||||
|
# the next line is the default as used on psycopg author Debian system:
|
||||||
include_dirs=.:/usr/include/postgresql:/usr/include/postgresql/server
|
include_dirs=.:/usr/include/postgresql:/usr/include/postgresql/server
|
||||||
|
# uncomment next line on Mandrake 10.1 (and comment previous one):
|
||||||
|
#include_dirs=.:/usr/include/pgsql:/usr/include/pgsql/server
|
||||||
|
|
||||||
# if postgresql is installed somewhere weird, just add the right path in
|
# if postgresql is installed somewhere weird (i.e., not in your runtime library
|
||||||
# library_dir any extra libraries required to link in libraries
|
# path like /usr/lib), just add the right path in "library_dir" any extra
|
||||||
|
# libraries required to link in "libraries".
|
||||||
#library_dirs=
|
#library_dirs=
|
||||||
#libraries=
|
#libraries=
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user