[Zope-Checkins] SVN: Zope/branches/tim-merge-zodb34/setup.py Teach
Zope setup how to build ZODB 3.4's IFBTree types.
Tim Peters
tim.one at comcast.net
Wed Mar 30 22:15:26 EST 2005
Log message for revision 29744:
Teach Zope setup how to build ZODB 3.4's IFBTree types.
Changed:
U Zope/branches/tim-merge-zodb34/setup.py
-=-
Modified: Zope/branches/tim-merge-zodb34/setup.py
===================================================================
--- Zope/branches/tim-merge-zodb34/setup.py 2005-03-31 02:57:18 UTC (rev 29743)
+++ Zope/branches/tim-merge-zodb34/setup.py 2005-03-31 03:15:24 UTC (rev 29744)
@@ -238,6 +238,10 @@
include_dirs=EXTENSIONCLASS_INCLUDEDIRS + ['persistent'],
define_macros=[('EXCLUDE_INTSET_SUPPORT', None)],
sources=['BTrees/_IOBTree.c']),
+ Extension(name='BTrees._IFBTree',
+ include_dirs=EXTENSIONCLASS_INCLUDEDIRS + ['persistent'],
+ define_macros=[('EXCLUDE_INTSET_SUPPORT', None)],
+ sources=['BTrees/_IFBTree.c']),
Extension(name='BTrees._fsBTree',
include_dirs=EXTENSIONCLASS_INCLUDEDIRS + ['persistent'],
define_macros=[('EXCLUDE_INTSET_SUPPORT', None)],
More information about the Zope-Checkins
mailing list