[Zope3-checkins] CVS: Zope3 - setup.py:1.5
Jeremy Hylton
jeremy@zope.com
Thu, 19 Dec 2002 15:24:44 -0500
Update of /cvs-repository/Zope3
In directory cvs.zope.org:/tmp/cvs-serv25949
Modified Files:
setup.py
Log Message:
Use the new .h files in lib/python
=== Zope3/setup.py 1.4 => 1.5 ===
--- Zope3/setup.py:1.4 Thu Dec 19 15:16:58 2002
+++ Zope3/setup.py Thu Dec 19 15:24:43 2002
@@ -87,8 +87,8 @@
cmd.copy_file(file, dest)
-extra = ExtraFileFinder(EXTS)
-os.path.walk('.', extra.visit, None)
+##extra = ExtraFileFinder(EXTS)
+##os.path.walk('.', extra.visit, None)
class MyLibInstaller(install_lib):
@@ -194,14 +194,14 @@
Extension("Zope.ContextWrapper.wrapper",
["lib/python/Zope/ContextWrapper/wrapper.c"],
include_dirs = ["include"],
- depends = ["include/Zope/ContextWrapper/wrapper.h",
- "include/Zope/Proxy/proxy.h"]),
+ depends = ["lib/python/Zope/ContextWrapper/wrapper.h",
+ "lib/python/Zope/Proxy/proxy.h"]),
Extension("Zope.Proxy.proxy", ["lib/python/Zope/Proxy/proxy.c"],
- include_dirs = ["include"],
- depends = ["include/Zope/Proxy/proxy.h"]),
+ include_dirs = ["lib/python"],
+ depends = ["lib/python/Zope/Proxy/proxy.h"]),
Extension("Zope.Security._Proxy", ["lib/python/Zope/Security/_Proxy.c"],
- include_dirs = ["include"],
- depends = ["include/Zope/Proxy/proxy.h"]),
+ include_dirs = ["lib/python"],
+ depends = ["lib/python/Zope/Proxy/proxy.h"]),
]
doclines = __doc__.split("\n")