Commit e457b326 authored by Tim Peters's avatar Tim Peters

Try to get zope.proxy to build.

There's a mystery:  the tests for it appear to run after
"build_ext -i", but not after "build".  But that appears
to be true for the long-stitched-in zope.interface too.
parent dbc64332
...@@ -128,7 +128,18 @@ cZopeInterface = Extension( ...@@ -128,7 +128,18 @@ cZopeInterface = Extension(
sources= ['src/zope/interface/_zope_interface_coptimizations.c'] sources= ['src/zope/interface/_zope_interface_coptimizations.c']
) )
exts += [cPersistence, cPickleCache, TimeStamp, winlock, cZopeInterface] cZopeProxy = Extension(
name = 'zope.proxy._zope_proxy_proxy',
sources= ['src/zope/proxy/_zope_proxy_proxy.c']
)
exts += [cPersistence,
cPickleCache,
TimeStamp,
winlock,
cZopeInterface,
cZopeProxy,
]
# The ZODB.zodb4 code is not being packaged, because it is only # The ZODB.zodb4 code is not being packaged, because it is only
# need to convert early versions of Zope3 databases to ZODB3. # need to convert early versions of Zope3 databases to ZODB3.
...@@ -141,7 +152,7 @@ packages = ["BTrees", "BTrees.tests", ...@@ -141,7 +152,7 @@ packages = ["BTrees", "BTrees.tests",
"transaction", "transaction.tests", "transaction", "transaction.tests",
"ThreadedAsync", "ThreadedAsync",
"zdaemon", "zdaemon.tests", "zdaemon", "zdaemon.tests",
"zope", "zope.interface", "zope.testing", "zope", "zope.interface", "zope.testing", "zope.proxy",
"ZopeUndo", "ZopeUndo.tests", "ZopeUndo", "ZopeUndo.tests",
"ZConfig", "ZConfig.tests", "ZConfig", "ZConfig.tests",
"ZConfig.components", "ZConfig.components",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment