[Zodb-checkins] SVN: ZODB/branches/3.9/s Fixed a problem installing header files.

Jim Fulton jim at zope.com
Mon Dec 14 17:52:17 EST 2009


Log message for revision 106504:
  Fixed a problem installing header files.
  See https://bugs.launchpad.net/zodb/+bug/459889
  

Changed:
  U   ZODB/branches/3.9/setup.py
  U   ZODB/branches/3.9/src/CHANGES.txt
  U   ZODB/branches/3.9/src/persistent/py24compat.h

-=-
Modified: ZODB/branches/3.9/setup.py
===================================================================
--- ZODB/branches/3.9/setup.py	2009-12-14 20:25:16 UTC (rev 106503)
+++ ZODB/branches/3.9/setup.py	2009-12-14 22:52:16 UTC (rev 106504)
@@ -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/branches/3.9/src/CHANGES.txt
===================================================================
--- ZODB/branches/3.9/src/CHANGES.txt	2009-12-14 20:25:16 UTC (rev 106503)
+++ ZODB/branches/3.9/src/CHANGES.txt	2009-12-14 22:52:16 UTC (rev 106504)
@@ -26,6 +26,8 @@
 - The FileStorage backup and restore script, repozo, gave a
   deprecation warning under Python 2.6.
 
+- C Header files weren't installed correctly.
+
 3.9.3 (2009-10-23)
 ==================
 

Modified: ZODB/branches/3.9/src/persistent/py24compat.h
===================================================================
--- ZODB/branches/3.9/src/persistent/py24compat.h	2009-12-14 20:25:16 UTC (rev 106503)
+++ ZODB/branches/3.9/src/persistent/py24compat.h	2009-12-14 22:52:16 UTC (rev 106504)
@@ -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