[Python-checkins] python/dist/src setup.py,1.206,1.207
greg at users.sourceforge.net
greg at users.sourceforge.net
Mon Dec 13 10:57:34 CET 2004
Update of /cvsroot/python/python/dist/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1073
Modified Files:
setup.py
Log Message:
the bsddb module now also works with BerkeleyDB 4.3.
Index: setup.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/setup.py,v
retrieving revision 1.206
retrieving revision 1.207
diff -u -d -r1.206 -r1.207
--- setup.py 7 Dec 2004 03:25:18 -0000 1.206
+++ setup.py 13 Dec 2004 09:57:31 -0000 1.207
@@ -492,7 +492,7 @@
# Sleepycat Berkeley DB interface. http://www.sleepycat.com
#
# This requires the Sleepycat DB code. The earliest supported version
- # of that library is 3.2, the latest supported version is 4.2. A list
+ # of that library is 3.2, the latest supported version is 4.3. A list
# of available releases can be found at
#
# http://www.sleepycat.com/update/index.html
@@ -500,15 +500,18 @@
# when sorted in reverse order, keys for this dict must appear in the
# order you wish to search - e.g., search for db4 before db3
db_try_this = {
- 'db4': {'libs': ('db-4.2', 'db42', 'db-4.1', 'db41', 'db-4.0', 'db4',),
- 'libdirs': ('/usr/local/BerkeleyDB.4.2/lib',
+ 'db4': {'libs': ('db-4.3', 'db43', 'db-4.2', 'db42', 'db-4.1', 'db41', 'db-4.0', 'db4',),
+ 'libdirs': ('/usr/local/BerkeleyDB.4.3/lib',
+ '/usr/local/BerkeleyDB.4.2/lib',
'/usr/local/BerkeleyDB.4.1/lib',
'/usr/local/BerkeleyDB.4.0/lib',
'/usr/local/lib',
'/opt/sfw',
'/sw/lib',
),
- 'incdirs': ('/usr/local/BerkeleyDB.4.2/include',
+ 'incdirs': ('/usr/local/BerkeleyDB.4.3/include',
+ '/usr/local/include/db43',
+ '/usr/local/BerkeleyDB.4.2/include',
'/usr/local/include/db42',
'/usr/local/BerkeleyDB.4.1/include',
'/usr/local/include/db41',
More information about the Python-checkins
mailing list