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

Guido van Rossum guido@python.org
Thu, 26 Dec 2002 13:38:14 -0500


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

Modified Files:
      Tag: ZODB3-3_1-branch
	setup.py 
Log Message:
Quick fix to avoid failures when building with Python 2.2 without
BSDDB installed.  I know this isn't right, but I don't want to think
about it more.  Barry can do the proper fix before we release ZODB
3.1.1.


=== ZODB3/setup.py 1.20.2.5 => 1.20.2.6 ===
--- ZODB3/setup.py:1.20.2.5	Fri Dec  6 18:00:34 2002
+++ ZODB3/setup.py	Thu Dec 26 13:38:14 2002
@@ -170,8 +170,10 @@
                ]
 
 # Don't build the helper unless using at least Python 2.2
-if sys.hexversion >= 0x020200F0:
-    ext_modules.append(bsddbhelper)
+# XXX Commented out because it doesn't work without BSDDB installed.
+#     Having this work is more important than having BSDDB work.
+##if sys.hexversion >= 0x020200F0:
+##    ext_modules.append(bsddbhelper)
 
 doclines = __doc__.split("\n")