diff options
author | Nick Clifton <nickc@redhat.com> | 2017-02-20 12:52:22 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2017-02-20 12:52:22 +0000 |
commit | 9c7e3b0e6b5234c39d1269fdf1a1413e2a734a79 (patch) | |
tree | 6741c1e41fc9409262816a02b2e3ee366a942e7c /zlib/os400 | |
parent | 0db8980cc0ee05727c11f8b7c6674137a4d5de4e (diff) | |
download | gdb-9c7e3b0e6b5234c39d1269fdf1a1413e2a734a79.zip gdb-9c7e3b0e6b5234c39d1269fdf1a1413e2a734a79.tar.gz gdb-9c7e3b0e6b5234c39d1269fdf1a1413e2a734a79.tar.bz2 |
Sync ZLIB with FSF GCC sources, bringing in version 1.2.11.
- Fix deflate stored bug when pulling last block from window
- Permit immediate deflateParams changes before any deflate input
Diffstat (limited to 'zlib/os400')
-rw-r--r-- | zlib/os400/README400 | 2 | ||||
-rw-r--r-- | zlib/os400/make.sh | 2 | ||||
-rw-r--r-- | zlib/os400/zlib.inc | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/zlib/os400/README400 b/zlib/os400/README400 index 28dca8c..4f98334 100644 --- a/zlib/os400/README400 +++ b/zlib/os400/README400 @@ -1,4 +1,4 @@ - ZLIB version 1.2.10 for OS/400 installation instructions + ZLIB version 1.2.11 for OS/400 installation instructions 1) Download and unpack the zlib tarball to some IFS directory. (i.e.: /path/to/the/zlib/ifs/source/directory) diff --git a/zlib/os400/make.sh b/zlib/os400/make.sh index ddbfb16..19eec11 100644 --- a/zlib/os400/make.sh +++ b/zlib/os400/make.sh @@ -260,7 +260,7 @@ fi echo '#pragma comment(user, "ZLIB version '"${VERSION}"'")' > os400.c echo '#pragma comment(user, __DATE__)' >> os400.c echo '#pragma comment(user, __TIME__)' >> os400.c -echo '#pragma comment(copyright, "Copyright (C) 1995-2016 Jean-Loup Gailly, Mark Adler. OS/400 version by P. Monnerat.")' >> os400.c +echo '#pragma comment(copyright, "Copyright (C) 1995-2017 Jean-Loup Gailly, Mark Adler. OS/400 version by P. Monnerat.")' >> os400.c make_module OS400 os400.c LINK= # No need to rebuild service program yet. MODULES= diff --git a/zlib/os400/zlib.inc b/zlib/os400/zlib.inc index a2147dd..c6aca2c 100644 --- a/zlib/os400/zlib.inc +++ b/zlib/os400/zlib.inc @@ -1,7 +1,7 @@ * ZLIB.INC - Interface to the general purpose compression library * * ILE RPG400 version by Patrick Monnerat, DATASPHERE. - * Version 1.2.10 + * Version 1.2.11 * * * WARNING: @@ -22,12 +22,12 @@ * * Versioning information. * - D ZLIB_VERSION C '1.2.10' + D ZLIB_VERSION C '1.2.11' D ZLIB_VERNUM C X'12a0' D ZLIB_VER_MAJOR C 1 D ZLIB_VER_MINOR C 2 D ZLIB_VER_REVISION... - D C 10 + D C 11 D ZLIB_VER_SUBREVISION... D C 0 * |