diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-06-12 03:33:09 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-06-12 03:33:09 (GMT) |
commit | 6e73aaab474ab9df512e8f24029ed1c57f39c619 (patch) | |
tree | 52ce5b5abe343a3b08f92af29ddf7832ddad360d /pyconfig.h.in | |
parent | a6d80faf6c7074ad970a2ba15e825d5343a37ec3 (diff) | |
download | cpython-6e73aaab474ab9df512e8f24029ed1c57f39c619.zip cpython-6e73aaab474ab9df512e8f24029ed1c57f39c619.tar.gz cpython-6e73aaab474ab9df512e8f24029ed1c57f39c619.tar.bz2 |
Patch #1503046, Conditional compilation of zlib.(de)compressobj.copy
copy is only in newer versions of zlib. This should allow zlibmodule
to work with older versions like the Tru64 buildbot.
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index e8f0d8b..84486ca 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -710,6 +710,9 @@ */ #undef HAVE_WORKING_TZSET +/* Define if the zlib library has inflateCopy */ +#undef HAVE_ZLIB_COPY + /* Define to 1 if you have the `_getpty' function. */ #undef HAVE__GETPTY |