parent
f9f0b21653
commit
014f103705
|
@ -12,7 +12,7 @@ data1 = """ int length=DEFAULTALLOC, err = Z_OK;
|
||||||
"""
|
"""
|
||||||
|
|
||||||
data2 = """/* zlibmodule.c -- gzip-compatible data compression */
|
data2 = """/* zlibmodule.c -- gzip-compatible data compression */
|
||||||
/* See http://www.cdrom.com/pub/infozip/zlib/ */
|
/* See http://www.gzip.org/zlib/
|
||||||
/* See http://www.winimage.com/zLibDll for Windows */
|
/* See http://www.winimage.com/zLibDll for Windows */
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
|
@ -443,7 +443,7 @@ class PyBuildExt(build_ext):
|
||||||
|
|
||||||
# Andrew Kuchling's zlib module.
|
# Andrew Kuchling's zlib module.
|
||||||
# This require zlib 1.1.3 (or later).
|
# This require zlib 1.1.3 (or later).
|
||||||
# See http://www.cdrom.com/pub/infozip/zlib/
|
# See http://www.gzip.org/zlib/
|
||||||
if (self.compiler.find_library_file(lib_dirs, 'z')):
|
if (self.compiler.find_library_file(lib_dirs, 'z')):
|
||||||
exts.append( Extension('zlib', ['zlibmodule.c'],
|
exts.append( Extension('zlib', ['zlibmodule.c'],
|
||||||
libraries = ['z']) )
|
libraries = ['z']) )
|
||||||
|
|
|
@ -462,7 +462,7 @@ GLHACK=-Dclear=__GLclear
|
||||||
|
|
||||||
# Andrew Kuchling's zlib module.
|
# Andrew Kuchling's zlib module.
|
||||||
# This require zlib 1.1.3 (or later).
|
# This require zlib 1.1.3 (or later).
|
||||||
# See http://www.cdrom.com/pub/infozip/zlib/
|
# See http://www.gzip.org/zlib/
|
||||||
#zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
|
#zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
|
||||||
|
|
||||||
# Interface to the Expat XML parser
|
# Interface to the Expat XML parser
|
||||||
|
|
Loading…
Reference in New Issue