diff options
| author | Federico Di Gregorio <fog@initd.org> | 2005-06-17 15:47:22 +0000 |
|---|---|---|
| committer | Federico Di Gregorio <fog@initd.org> | 2005-06-17 15:47:22 +0000 |
| commit | 3f63c53fd0a70eeab9c42ccd0b46dad98682cef9 (patch) | |
| tree | 75a2b3be44d554563d42cffbe8b57f9ce2837005 /setup.cfg | |
| parent | 6ad551796c314e16b323226e4bc9e3d177114147 (diff) | |
| download | psycopg2-3f63c53fd0a70eeab9c42ccd0b46dad98682cef9.tar.gz | |
Added some clarifications and Mandrake example to setup.cfg.
Diffstat (limited to 'setup.cfg')
| -rw-r--r-- | setup.cfg | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -1,5 +1,4 @@ [build_ext] - define=PSYCOPG_EXTENSIONS,PSYCOPG_DISPLAY_SIZE,HAVE_PQFREEMEM,HAVE_PQPROTOCOL3 # PSYCOPG_DEBUG can be added to enable verbose debug information # 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 # 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 +# 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 -# library_dir any extra libraries required to link in libraries +# if postgresql is installed somewhere weird (i.e., not in your runtime library +# path like /usr/lib), just add the right path in "library_dir" any extra +# libraries required to link in "libraries". #library_dirs= #libraries= |
