[Zodb-checkins] SVN: ZODB/trunk/s Fixed a problem installing header files.
Jim Fulton
jim at zope.com
Mon Dec 14 18:30:10 EST 2009
Log message for revision 106515:
Fixed a problem installing header files.
See https://bugs.launchpad.net/zodb/+bug/459889
Changed:
U ZODB/trunk/setup.py
U ZODB/trunk/src/persistent/py24compat.h
-=-
Modified: ZODB/trunk/setup.py
===================================================================
--- ZODB/trunk/setup.py 2009-12-14 23:30:08 UTC (rev 106514)
+++ ZODB/trunk/setup.py 2009-12-14 23:30:10 UTC (rev 106515)
@@ -189,6 +189,7 @@
package_dir = {'': 'src'},
ext_modules = exts,
headers = ['src/persistent/cPersistence.h',
+ 'src/persistent/py24compat.h',
'src/persistent/ring.h'],
license = "ZPL 2.1",
platforms = ["any"],
Modified: ZODB/trunk/src/persistent/py24compat.h
===================================================================
--- ZODB/trunk/src/persistent/py24compat.h 2009-12-14 23:30:08 UTC (rev 106514)
+++ ZODB/trunk/src/persistent/py24compat.h 2009-12-14 23:30:10 UTC (rev 106515)
@@ -1,5 +1,5 @@
/* Backport type definitions from Python 2.5's object.h */
-#ifndef PERSISTENT_PY24COMPATH_H
+#ifndef PERSISTENT_PY24COMPAT_H
#define PERSISTENT_PY24COMPAT_H
#if PY_VERSION_HEX < 0x02050000
typedef int Py_ssize_t;
More information about the Zodb-checkins
mailing list