[Zodb-checkins] CVS: ZODB3 - setup.py:1.20.2.7

Jeremy Hylton jeremy@zope.com
Tue, 7 Jan 2003 12:44:06 -0500


Update of /cvs-repository/ZODB3
In directory cvs.zope.org:/tmp/cvs-serv1830

Modified Files:
      Tag: ZODB3-3_1-branch
	setup.py 
Log Message:
Update to use BDBStorage instead of bsddb3Storage.

XXX I hope Barry will fix failing tests.


=== ZODB3/setup.py 1.20.2.6 => 1.20.2.7 ===
--- ZODB3/setup.py:1.20.2.6	Thu Dec 26 13:38:14 2002
+++ ZODB3/setup.py	Tue Jan  7 12:44:03 2003
@@ -105,8 +105,8 @@
                 define_macros = [('EXCLUDE_INTSET_SUPPORT', None)],
                 )
 
-bsddbhelper = Extension(name = 'bsddb3Storage._helper',
-                        sources = ['bsddb3Storage/bsddb3Storage/_helper.c'])
+bsddbhelper = Extension(name = 'BDBStorage._helper',
+                        sources = ['BDBStorage/_helper.c'])
 
 packages = ['BTrees', 'BTrees.tests',
             'ZODB', 'ZODB.tests',
@@ -132,8 +132,7 @@
 except ImportError:
     pass
 else:
-    packages.extend(["bsddb3Storage", "bsddb3Storage.tests"])
-    package_dir['bsddb3Storage'] = 'bsddb3Storage/bsddb3Storage'
+    packages.extend(["BDBStorage", "BDBStorage.tests"])
 
 # This version of ZODB ships with two incompatible versions of ZEO.
 # The recommended version is ZEO 2.0, which is the focus of current