Skip to content

Commit 014f103

Browse files
committed
SF bug #999776, zlib home page wrong
Backport candidate.
1 parent f9f0b21 commit 014f103

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

Lib/test/test_gzip.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"""
1313

1414
data2 = """/* zlibmodule.c -- gzip-compatible data compression */
15-
/* See http://www.cdrom.com/pub/infozip/zlib/ */
15+
/* See http://www.gzip.org/zlib/
1616
/* See http://www.winimage.com/zLibDll for Windows */
1717
"""
1818

Misc/BeOS-setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ def detect_modules(self):
443443

444444
# Andrew Kuchling's zlib module.
445445
# This require zlib 1.1.3 (or later).
446-
# See http://www.cdrom.com/pub/infozip/zlib/
446+
# See http://www.gzip.org/zlib/
447447
if (self.compiler.find_library_file(lib_dirs, 'z')):
448448
exts.append( Extension('zlib', ['zlibmodule.c'],
449449
libraries = ['z']) )

Modules/Setup.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ GLHACK=-Dclear=__GLclear
462462

463463
# Andrew Kuchling's zlib module.
464464
# This require zlib 1.1.3 (or later).
465-
# See http://www.cdrom.com/pub/infozip/zlib/
465+
# See http://www.gzip.org/zlib/
466466
#zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
467467

468468
# Interface to the Expat XML parser

0 commit comments

Comments
 (0)