Commit 5e6ea7f6 authored by Jim Fulton's avatar Jim Fulton

Fixed a problem installing header files.

See https://bugs.launchpad.net/zodb/+bug/459889
parent 6fecab32
......@@ -189,6 +189,7 @@ setup(name="ZODB3",
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"],
......
......@@ -26,6 +26,8 @@ Bugs Fixed
- 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)
==================
......
/* 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;
......
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