From 96b254193998ea273080a5413f241ac96ba4915f Mon Sep 17 00:00:00 2001 From: Federico Di Gregorio Date: Tue, 15 Nov 2005 16:05:15 +0000 Subject: Better fix for py2exe and related tools. --- setup.cfg | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'setup.cfg') diff --git a/setup.cfg b/setup.cfg index 54a2edf..220e5a6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -2,17 +2,18 @@ define=PSYCOPG_DEBUG,PSYCOPG_EXTENSIONS,PSYCOPG_DISPLAY_SIZE,HAVE_PQFREEMEM,HAVE_PQPROTOCOL3 # PSYCOPG_EXTENSIONS enables extensions to PEP-249 (you really want this) # PSYCOPG_DISPLAY_SIZE enable display size calculation (a little slower) -# HAVE_PQFREEMEM should be defined on PostgreSQL >= 7.4 -# HAVE_PQPROTOCOL3 should be defined on PostgreSQL >= 8.0 +# HAVE_PQFREEMEM should be defined on PostgreSQL >= 7.3 +# HAVE_PQPROTOCOL3 should be defined on PostgreSQL >= 7.4 # 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, but it is deprecated (will go away in 2.1) # Set to 1 to use Python datatime objects for default date/time representation use_pydatetime=1 # Set to 1 if you want to enable "Decimal" type on python 2.3. # If the "decimal" module is found in the PYTHONPATH it will be used, else -# fall back on the float type. +# fall back on the float type (this is disabled by default to be compatible +# with old versions of psycopg 1 and pre-beta versions of psycopg 2.) use_decimal=0 # "include_dirs" is the preferred method for locating postgresql headers, @@ -25,7 +26,7 @@ include_dirs=.:/usr/include/postgresql:/usr/include/postgresql/server #include_dirs=.:/usr/include/pgsql:/usr/include/pgsql/server # 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 +# path like /usr/lib), just add the right path in "library_dirs" any extra # libraries required to link in "libraries". #library_dirs= #libraries= -- cgit v1.2.1