[Python-checkins] r63604 - python/trunk/setup.py

gregory.p.smith python-checkins at python.org
Sun May 25 09:20:35 CEST 2008


Author: gregory.p.smith
Date: Sun May 25 09:20:34 2008
New Revision: 63604

Log:
print out information about which BerkeleyDB library was found by
setup.py to use to build the bsddb module.


Modified:
   python/trunk/setup.py

Modified: python/trunk/setup.py
==============================================================================
--- python/trunk/setup.py	(original)
+++ python/trunk/setup.py	Sun May 25 09:20:34 2008
@@ -815,9 +815,8 @@
                         if db_setup_debug: print "db lib: ", dblib, "not found"
 
         except db_found:
-            if db_setup_debug:
-                print "db lib: using", db_ver, dblib
-                print "db: lib dir", dblib_dir, "inc dir", db_incdir
+            print "bsddb using BerkeleyDB lib:", db_ver, dblib
+            print "bsddb lib dir:", dblib_dir, " inc dir:", db_incdir
             db_incs = [db_incdir]
             dblibs = [dblib]
             # We add the runtime_library_dirs argument because the


More information about the Python-checkins mailing list