Compare commits
	
		
			28 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|   | e75de023b6 | ||
|   | 68a02240a6 | ||
|   | 5461db945c | ||
|   | 22eb01184f | ||
|   | 8fbd9f1340 | ||
|   | 520561c577 | ||
|   | 32d8a5379e | ||
|   | f0cff24214 | ||
|   | 81015585d2 | ||
|   | ad88c19baa | ||
|   | 17741efa02 | ||
|   | de6cb6fe5c | ||
|   | 601b542a9d | ||
|   | 0458bbf2c0 | ||
|   | 06c0e754ce | ||
|   | 9cdb49c96e | ||
|   | 09bbe4c7f0 | ||
|   | b9a778a2b8 | ||
|   | 4a9e4dff0d | ||
|   | 5c312df969 | ||
|   | e1f45fed54 | ||
|   | 509c1d2860 | ||
|   | 2d55657c03 | ||
|   | 5a5dd2c793 | ||
|   | eb33abcc55 | ||
|   | ce0ca940c2 | ||
|   | c3799a2480 | ||
|   | 0ddfbd2346 | 
| @@ -110,9 +110,14 @@ set(ZLIB_SRCS | ||||
|     trees.c | ||||
|     uncompr.c | ||||
|     zutil.c | ||||
|     win32/zlib1.rc | ||||
| ) | ||||
|  | ||||
| if(NOT MINGW) | ||||
|     set(ZLIB_SRCS ${ZLIB_SRCS} | ||||
|         win32/zlib1.rc # If present will override custom build rule below. | ||||
|     ) | ||||
| endif() | ||||
|  | ||||
| # parse the full version number from zlib.h and include in ZLIB_FULL_VERSION | ||||
| file(READ ${CMAKE_CURRENT_SOURCE_DIR}/zlib.h _zlib_h_contents) | ||||
| string(REGEX REPLACE ".*#define[ \t]+ZLIB_VERSION[ \t]+\"([0-9A-Za-z.]+)\".*" | ||||
| @@ -120,6 +125,10 @@ string(REGEX REPLACE ".*#define[ \t]+ZLIB_VERSION[ \t]+\"([0-9A-Za-z.]+)\".*" | ||||
|  | ||||
| if(MINGW) | ||||
|     # This gets us DLL resource information when compiling on MinGW. | ||||
|     if(NOT CMAKE_RC_COMPILER) | ||||
|         SET(CMAKE_RC_COMPILER windres.exe) | ||||
|     endif() | ||||
|  | ||||
|     add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/zlib1rc.obj | ||||
|                        COMMAND ${CMAKE_RC_COMPILER} | ||||
|                             -D GCC_WINDRES | ||||
|   | ||||
							
								
								
									
										27
									
								
								ChangeLog
									
									
									
									
									
								
							
							
						
						
									
										27
									
								
								ChangeLog
									
									
									
									
									
								
							| @@ -1,6 +1,33 @@ | ||||
|  | ||||
|                 ChangeLog file for zlib | ||||
|  | ||||
| Changes in 1.2.6 (29 Jan 2012) | ||||
| - Update the Pascal interface in contrib/pascal | ||||
| - Fix function numbers for gzgetc_ in zlibvc.def files | ||||
| - Fix configure.ac for contrib/minizip [Schiffer] | ||||
| - Fix large-entry detection in minizip on 64-bit systems [Schiffer] | ||||
| - Have ./configure use the compiler return code for error indication | ||||
| - Fix CMakeLists.txt for cross compilation [McClure] | ||||
| - Fix contrib/minizip/zip.c for 64-bit architectures [Dalsnes] | ||||
| - Fix compilation of contrib/minizip on FreeBSD [Marquez] | ||||
| - Correct suggested usages in win32/Makefile.msc [Shachar, Horvath] | ||||
| - Include io.h for Turbo C / Borland C on all platforms [Truta] | ||||
| - Make version explicit in contrib/minizip/configure.ac [Bosmans] | ||||
| - Avoid warning for no encryption in contrib/minizip/zip.c [Vollant] | ||||
| - Minor cleanup up contrib/minizip/unzip.c [Vollant] | ||||
| - Fix bug when compiling minizip with C++ [Vollant] | ||||
| - Protect for long name and extra fields in contrib/minizip [Vollant] | ||||
| - Avoid some warnings in contrib/minizip [Vollant] | ||||
| - Add -I../.. -L../.. to CFLAGS for minizip and miniunzip | ||||
| - Add missing libs to minizip linker command | ||||
| - Add support for VPATH builds in contrib/minizip | ||||
| - Add an --enable-demos option to contrib/minizip/configure | ||||
| - Add the generation of configure.log by ./configure | ||||
| - Exit when required parameters not provided to win32/Makefile.gcc | ||||
| - Have gzputc return the character written instead of the argument | ||||
| - Use the -m option on ldconfig for BSD systems [Tobias] | ||||
| - Correct in zlib.map when deflateResetKeep was added | ||||
|  | ||||
| Changes in 1.2.5.3 (15 Jan 2012) | ||||
| - Restore gzgetc function for binary compatibility | ||||
| - Do not use _lseeki64 under Borland C++ [Truta] | ||||
|   | ||||
| @@ -32,7 +32,7 @@ CPP=$(CC) -E | ||||
|  | ||||
| STATICLIB=libz.a | ||||
| SHAREDLIB=libz.so | ||||
| SHAREDLIBV=libz.so.1.2.5.3 | ||||
| SHAREDLIBV=libz.so.1.2.6 | ||||
| SHAREDLIBM=libz.so.1 | ||||
| LIBS=$(STATICLIB) $(SHAREDLIBV) | ||||
|  | ||||
| @@ -250,7 +250,7 @@ clean: | ||||
|  | ||||
| maintainer-clean: distclean | ||||
| distclean: clean zconf zconf.h.cmakein docs | ||||
| 	rm -f Makefile zlib.pc | ||||
| 	rm -f Makefile zlib.pc configure.log | ||||
| 	-@rm -f .DS_Store | ||||
| 	-@printf 'all:\n\t-@echo "Please use ./configure first.  Thank you."\n' > Makefile | ||||
| 	-@printf '\ndistclean:\n\tmake -f Makefile.in distclean\n' >> Makefile | ||||
|   | ||||
							
								
								
									
										6
									
								
								README
									
									
									
									
									
								
							
							
						
						
									
										6
									
								
								README
									
									
									
									
									
								
							| @@ -1,6 +1,6 @@ | ||||
| ZLIB DATA COMPRESSION LIBRARY | ||||
|  | ||||
| zlib 1.2.5.3 is a general purpose data compression library.  All the code is | ||||
| zlib 1.2.6 is a general purpose data compression library.  All the code is | ||||
| thread safe.  The data format used by the zlib library is described by RFCs | ||||
| (Request for Comments) 1950 to 1952 in the files | ||||
| http://tools.ietf.org/html/rfc1950 (zlib format), rfc1951 (deflate format) and | ||||
| @@ -31,7 +31,7 @@ Mark Nelson <markn@ieee.org> wrote an article about zlib for the Jan.  1997 | ||||
| issue of Dr.  Dobb's Journal; a copy of the article is available at | ||||
| http://marknelson.us/1997/01/01/zlib-engine/ . | ||||
|  | ||||
| The changes made in version 1.2.5.3 are documented in the file ChangeLog. | ||||
| The changes made in version 1.2.6 are documented in the file ChangeLog. | ||||
|  | ||||
| Unsupported third party contributions are provided in directory contrib/ . | ||||
|  | ||||
| @@ -84,7 +84,7 @@ Acknowledgments: | ||||
|  | ||||
| Copyright notice: | ||||
|  | ||||
|  (C) 1995-2011 Jean-loup Gailly and Mark Adler | ||||
|  (C) 1995-2012 Jean-loup Gailly and Mark Adler | ||||
|  | ||||
|   This software is provided 'as-is', without any express or implied | ||||
|   warranty.  In no event will the authors be held liable for any damages | ||||
|   | ||||
| @@ -105,6 +105,6 @@ | ||||
|                                  &MODLIB/TREES       &MODLIB/UNCOMPR     + | ||||
|                                  &MODLIB/ZUTIL)                          + | ||||
|                           SRCFILE(&SRCLIB/&CTLFILE) SRCMBR(BNDSRC)       + | ||||
|                           TEXT('ZLIB 1.2.5.3') TGTRLS(&TGTRLS) | ||||
|                           TEXT('ZLIB 1.2.6') TGTRLS(&TGTRLS) | ||||
|  | ||||
|              ENDPGM | ||||
|   | ||||
| @@ -1,4 +1,4 @@ | ||||
|         ZLIB version 1.2.5.3 for AS400 installation instructions | ||||
|         ZLIB version 1.2.6 for AS400 installation instructions | ||||
|  | ||||
| I) From an AS400 *SAVF file: | ||||
|  | ||||
|   | ||||
| @@ -1,7 +1,7 @@ | ||||
|       *  ZLIB.INC - Interface to the general purpose compression library | ||||
|       * | ||||
|       *  ILE RPG400 version by Patrick Monnerat, DATASPHERE. | ||||
|       *  Version 1.2.5.3 | ||||
|       *  Version 1.2.6 | ||||
|       * | ||||
|       * | ||||
|       *  WARNING: | ||||
| @@ -22,14 +22,14 @@ | ||||
|       * | ||||
|       *  Versioning information. | ||||
|       * | ||||
|      D ZLIB_VERSION    C                   '1.2.5.3' | ||||
|      D ZLIB_VERNUM     C                   X'1253' | ||||
|      D ZLIB_VERSION    C                   '1.2.6' | ||||
|      D ZLIB_VERNUM     C                   X'1260' | ||||
|      D ZLIB_VER_MAJOR  C                   1 | ||||
|      D ZLIB_VER_MINOR  C                   2 | ||||
|      D ZLIB_VER_REVISION... | ||||
|      D                 C                   5 | ||||
|      D                 C                   6 | ||||
|      D ZLIB_VER_SUBREVISION... | ||||
|      D                 C                   3 | ||||
|      D                 C                   0 | ||||
|       * | ||||
|       *  Other equates. | ||||
|       * | ||||
|   | ||||
							
								
								
									
										304
									
								
								configure
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										304
									
								
								configure
									
									
									
									
										vendored
									
									
								
							| @@ -13,6 +13,10 @@ | ||||
| # If you have problems, try without defining CC and CFLAGS before reporting | ||||
| # an error. | ||||
|  | ||||
| echo -------------------- >> configure.log | ||||
| echo $0 $* >> configure.log | ||||
| date >> configure.log | ||||
|  | ||||
| if [ -n "${CHOST}" ]; then | ||||
|     uname="`echo "${CHOST}" | sed -e 's/^[^-]*-\([^-]*\)$/\1/' -e 's/^[^-]*-[^-]*-\([^-]*\)$/\1/' -e 's/^[^-]*-[^-]*-\([^-]*\)-.*$/\1/'`" | ||||
|     CROSS_PREFIX="${CHOST}-" | ||||
| @@ -25,21 +29,21 @@ VER2=`sed -n -e '/VERSION "/s/.*"\([0-9]*\\.[0-9]*\)\\..*/\1/p' < zlib.h` | ||||
| VER1=`sed -n -e '/VERSION "/s/.*"\([0-9]*\)\\..*/\1/p' < zlib.h` | ||||
| if "${CROSS_PREFIX}ar" --version >/dev/null 2>/dev/null || test $? -lt 126; then | ||||
|     AR=${AR-"${CROSS_PREFIX}ar"} | ||||
|     test -n "${CROSS_PREFIX}" && echo Using ${AR} | ||||
|     test -n "${CROSS_PREFIX}" && echo Using ${AR} | tee -a configure.log | ||||
| else | ||||
|     AR=${AR-"ar"} | ||||
|     test -n "${CROSS_PREFIX}" && echo Using ${AR} | ||||
|     test -n "${CROSS_PREFIX}" && echo Using ${AR} | tee -a configure.log | ||||
| fi | ||||
| ARFLAGS=${ARFLAGS-"rc"} | ||||
| if "${CROSS_PREFIX}ranlib" --version >/dev/null 2>/dev/null || test $? -lt 126; then | ||||
|     RANLIB=${RANLIB-"${CROSS_PREFIX}ranlib"} | ||||
|     test -n "${CROSS_PREFIX}" && echo Using ${RANLIB} | ||||
|     test -n "${CROSS_PREFIX}" && echo Using ${RANLIB} | tee -a configure.log | ||||
| else | ||||
|     RANLIB=${RANLIB-"ranlib"} | ||||
| fi | ||||
| if "${CROSS_PREFIX}nm" --version >/dev/null 2>/dev/null || test $? -lt 126; then | ||||
|     NM=${NM-"${CROSS_PREFIX}nm"} | ||||
|     test -n "${CROSS_PREFIX}" && echo Using ${NM} | ||||
|     test -n "${CROSS_PREFIX}" && echo Using ${NM} | tee -a configure.log | ||||
| else | ||||
|     NM=${NM-"nm"} | ||||
| fi | ||||
| @@ -68,10 +72,10 @@ while test $# -ge 1 | ||||
| do | ||||
| case "$1" in | ||||
|     -h* | --help) | ||||
|       echo 'usage:' | ||||
|       echo '  configure [--zprefix] [--prefix=PREFIX]  [--eprefix=EXPREFIX]' | ||||
|       echo '    [--static] [--64] [--libdir=LIBDIR] [--sharedlibdir=LIBDIR]' | ||||
|       echo '    [--includedir=INCLUDEDIR] [--archs="-arch i386 -arch x86_64"]' | ||||
|       echo 'usage:' | tee -a configure.log | ||||
|       echo '  configure [--zprefix] [--prefix=PREFIX]  [--eprefix=EXPREFIX]' | tee -a configure.log | ||||
|       echo '    [--static] [--64] [--libdir=LIBDIR] [--sharedlibdir=LIBDIR]' | tee -a configure.log | ||||
|       echo '    [--includedir=INCLUDEDIR] [--archs="-arch i386 -arch x86_64"]' | tee -a configure.log | ||||
|         exit 0 ;; | ||||
|     -p*=* | --prefix=*) prefix=`echo $1 | sed 's/.*=//'`; shift ;; | ||||
|     -e*=* | --eprefix=*) exec_prefix=`echo $1 | sed 's/.*=//'`; shift ;; | ||||
| @@ -90,19 +94,56 @@ case "$1" in | ||||
|     -z* | --zprefix) zprefix=1; shift ;; | ||||
|     -6* | --64) build64=1; shift ;; | ||||
|     -a*=* | --archs=*) ARCHS=`echo $1 | sed 's/.*=//'`; shift ;; | ||||
|     --sysconfdir=*) echo "ignored option: --sysconfdir"; shift ;; | ||||
|     --localstatedir=*) echo "ignored option: --localstatedir"; shift ;; | ||||
|     *) echo "unknown option: $1"; echo "$0 --help for help"; exit 1 ;; | ||||
|     --sysconfdir=*) echo "ignored option: --sysconfdir" | tee -a configure.log; shift ;; | ||||
|     --localstatedir=*) echo "ignored option: --localstatedir" | tee -a configure.log; shift ;; | ||||
|     *) echo "unknown option: $1"; echo "$0 --help for help" | tee -a configure.log; exit 1 ;; | ||||
|     esac | ||||
| done | ||||
|  | ||||
| test=ztest$$ | ||||
|  | ||||
| show() | ||||
| { | ||||
|   case "$*" in | ||||
|     *$test.c*) | ||||
|       echo === $test.c === >> configure.log | ||||
|       cat $test.c >> configure.log | ||||
|       echo === >> configure.log;; | ||||
|   esac | ||||
|   echo $* >> configure.log | ||||
| } | ||||
|  | ||||
| cat > $test.c <<EOF | ||||
| #error error | ||||
| EOF | ||||
| if ($CC -c $CFLAGS $test.c) 2>/dev/null; then | ||||
|   try() | ||||
|   { | ||||
|     show $* | ||||
|     test "`( $* ) 2>&1 | tee -a configure.log`" = "" | ||||
|   } | ||||
|   echo - using any output from compiler to indicate an error >> configure.log | ||||
| else | ||||
|   try() | ||||
|   { | ||||
|     show $* | ||||
|     ( $* ) >> configure.log 2>&1 | ||||
|     ret=$? | ||||
|     if test $ret -ne 0; then | ||||
|       echo "(exit code "$ret")" >> configure.log | ||||
|     fi | ||||
|     return $ret | ||||
|   } | ||||
| fi | ||||
|  | ||||
| echo >> configure.log | ||||
|  | ||||
| cat > $test.c <<EOF | ||||
| extern int getchar(); | ||||
| int hello() {return getchar();} | ||||
| EOF | ||||
|  | ||||
| test -z "$CC" && echo Checking for ${CROSS_PREFIX}gcc... | ||||
| test -z "$CC" && echo Checking for ${CROSS_PREFIX}gcc... | tee -a configure.log | ||||
| cc=${CC-${CROSS_PREFIX}gcc} | ||||
| cflags=${CFLAGS-"-O3"} | ||||
| # to force the asm version use: CFLAGS="-O3 -DASMV" ./configure | ||||
| @@ -113,7 +154,9 @@ case `$cc -v 2>&1` in | ||||
|   *gcc*) gcc=1 ;; | ||||
| esac | ||||
|  | ||||
| if test "$gcc" -eq 1 && ($cc -c $cflags $test.c) 2>/dev/null; then | ||||
| show $cc -c $cflags $test.c | ||||
| if test "$gcc" -eq 1 && ($cc -c $cflags $test.c) >> configure.log 2>&1; then | ||||
|   echo ... using gcc >> configure.log | ||||
|   CC="$cc" | ||||
|   CFLAGS="${CFLAGS--O3} ${ARCHS}" | ||||
|   SFLAGS="${CFLAGS--O3} -fPIC" | ||||
| @@ -129,14 +172,17 @@ if test "$gcc" -eq 1 && ($cc -c $cflags $test.c) 2>/dev/null; then | ||||
|     uname=`(uname -s || echo unknown) 2>/dev/null` | ||||
|   fi | ||||
|   case "$uname" in | ||||
|   Linux* | linux* | GNU | GNU/* | *BSD | *bsd* | DragonFly | solaris*) | ||||
|   Linux* | linux* | GNU | GNU/* | solaris*) | ||||
|         LDSHARED=${LDSHARED-"$cc -shared -Wl,-soname,libz.so.1,--version-script,zlib.map"} ;; | ||||
|   *BSD | *bsd* | DragonFly) | ||||
|         LDSHARED=${LDSHARED-"$cc -shared -Wl,-soname,libz.so.1,--version-script,zlib.map"} | ||||
|         LDCONFIG="ldconfig -m" ;; | ||||
|   CYGWIN* | Cygwin* | cygwin* | OS/2*) | ||||
|         EXE='.exe' ;; | ||||
|   MINGW* | mingw*) | ||||
| # temporary bypass | ||||
|         rm -f $test.[co] $test $test$shared_ext | ||||
|         echo "Please use win32/Makefile.gcc instead." | ||||
|         echo "Please use win32/Makefile.gcc instead." | tee -a configure.log | ||||
|         exit 1 | ||||
|         LDSHARED=${LDSHARED-"$cc -shared"} | ||||
|         LDSHAREDLIBC="" | ||||
| @@ -168,6 +214,7 @@ else | ||||
|   # find system name and corresponding cc options | ||||
|   CC=${CC-cc} | ||||
|   gcc=0 | ||||
|   echo ... using $CC >> configure.log | ||||
|   if test -z "$uname"; then | ||||
|     uname=`(uname -sr || echo unknown) 2>/dev/null` | ||||
|   fi | ||||
| @@ -246,21 +293,19 @@ SHAREDLIB=${SHAREDLIB-"libz$shared_ext"} | ||||
| SHAREDLIBV=${SHAREDLIBV-"libz$shared_ext.$VER"} | ||||
| SHAREDLIBM=${SHAREDLIBM-"libz$shared_ext.$VER1"} | ||||
|  | ||||
| echo >> configure.log | ||||
|  | ||||
| if test $shared -eq 1; then | ||||
|   echo Checking for shared library support... | ||||
|   echo Checking for shared library support... | tee -a configure.log | ||||
|   # we must test in two steps (cc then ld), required at least on SunOS 4.x | ||||
|   if test "`($CC -w -c $SFLAGS $test.c) 2>&1`" = "" && | ||||
|      test "`($LDSHARED $SFLAGS -o $test$shared_ext $test.o) 2>&1`" = ""; then | ||||
|     echo Building shared library $SHAREDLIBV with $CC. | ||||
|   if try $CC -w -c $SFLAGS $test.c && | ||||
|      try $LDSHARED $SFLAGS -o $test$shared_ext $test.o; then | ||||
|     echo Building shared library $SHAREDLIBV with $CC. | tee -a configure.log | ||||
|   elif test -z "$old_cc" -a -z "$old_cflags"; then | ||||
|     echo No shared library support. | ||||
|     echo No shared library support. | tee -a configure.log | ||||
|     shared=0; | ||||
|   else | ||||
|     echo Tested $CC -w -c $SFLAGS $test.c | ||||
|     $CC -w -c $SFLAGS $test.c | ||||
|     echo Tested $LDSHARED $SFLAGS -o $test$shared_ext $test.o | ||||
|     $LDSHARED $SFLAGS -o $test$shared_ext $test.o | ||||
|     echo 'No shared library support; try without defining CC and CFLAGS' | ||||
|     echo 'No shared library support; try without defining CC and CFLAGS' | tee -a configure.log | ||||
|     shared=0; | ||||
|   fi | ||||
| fi | ||||
| @@ -271,25 +316,41 @@ if test $shared -eq 0; then | ||||
|   SHAREDLIB="" | ||||
|   SHAREDLIBV="" | ||||
|   SHAREDLIBM="" | ||||
|   echo Building static library $STATICLIB version $VER with $CC. | ||||
|   echo Building static library $STATICLIB version $VER with $CC. | tee -a configure.log | ||||
| else | ||||
|   ALL="static shared" | ||||
|   TEST="all teststatic testshared" | ||||
| fi | ||||
|  | ||||
| CPP=${CPP-"$CC -E"} | ||||
| case $CFLAGS in | ||||
|   *ASMV*) | ||||
|     echo >> configure.log | ||||
|     show "$NM $test.o | grep _hello" | ||||
|     if test "`$NM $test.o | grep _hello | tee -a configure.log`" = ""; then | ||||
|       CPP="$CPP -DNO_UNDERLINE" | ||||
|       echo Checking for underline in external names... No. | tee -a configure.log | ||||
|     else | ||||
|       echo Checking for underline in external names... Yes. | tee -a configure.log | ||||
|     fi ;; | ||||
| esac | ||||
|  | ||||
| echo >> configure.log | ||||
|  | ||||
| cat > $test.c <<EOF | ||||
| #include <sys/types.h> | ||||
| off64_t dummy = 0; | ||||
| EOF | ||||
| if test "`($CC -c $CFLAGS -D_LARGEFILE64_SOURCE=1 $test.c) 2>&1`" = ""; then | ||||
| if try $CC -c $CFLAGS -D_LARGEFILE64_SOURCE=1 $test.c; then | ||||
|   CFLAGS="${CFLAGS} -D_LARGEFILE64_SOURCE=1" | ||||
|   SFLAGS="${SFLAGS} -D_LARGEFILE64_SOURCE=1" | ||||
|   ALL="${ALL} all64" | ||||
|   TEST="${TEST} test64" | ||||
|   echo "Checking for off64_t... Yes." | ||||
|   echo "Checking for fseeko... Yes." | ||||
|   echo "Checking for off64_t... Yes." | tee -a configure.log | ||||
|   echo "Checking for fseeko... Yes." | tee -a configure.log | ||||
| else | ||||
|   echo "Checking for off64_t... No." | ||||
|   echo "Checking for off64_t... No." | tee -a configure.log | ||||
|   echo >> configure.log | ||||
|   cat > $test.c <<EOF | ||||
| #include <stdio.h> | ||||
| int main(void) { | ||||
| @@ -297,45 +358,50 @@ int main(void) { | ||||
|   return 0; | ||||
| } | ||||
| EOF | ||||
|   if test "`($CC $CFLAGS -o $test $test.c) 2>&1`" = ""; then | ||||
|     echo "Checking for fseeko... Yes." | ||||
|   if try $CC $CFLAGS -o $test $test.c; then | ||||
|     echo "Checking for fseeko... Yes." | tee -a configure.log | ||||
|   else | ||||
|     CFLAGS="${CFLAGS} -DNO_FSEEKO" | ||||
|     SFLAGS="${SFLAGS} -DNO_FSEEKO" | ||||
|     echo "Checking for fseeko... No." | ||||
|     echo "Checking for fseeko... No." | tee -a configure.log | ||||
|   fi | ||||
| fi | ||||
|  | ||||
| cp -p zconf.h.in zconf.h | ||||
|  | ||||
| echo >> configure.log | ||||
|  | ||||
| cat > $test.c <<EOF | ||||
| #include <unistd.h> | ||||
| int main() { return 0; } | ||||
| EOF | ||||
| if test "`($CC -c $CFLAGS $test.c) 2>&1`" = ""; then | ||||
| if try $CC -c $CFLAGS $test.c; then | ||||
|   sed < zconf.h "/^#ifdef HAVE_UNISTD_H.* may be/s/def HAVE_UNISTD_H\(.*\) may be/ 1\1 was/" > zconf.temp.h | ||||
|   mv zconf.temp.h zconf.h | ||||
|   echo "Checking for unistd.h... Yes." | ||||
|   echo "Checking for unistd.h... Yes." | tee -a configure.log | ||||
| else | ||||
|   echo "Checking for unistd.h... No." | ||||
|   echo "Checking for unistd.h... No." | tee -a configure.log | ||||
| fi | ||||
|  | ||||
| echo >> configure.log | ||||
|  | ||||
| cat > $test.c <<EOF | ||||
| #include <stdarg.h> | ||||
| int main() { return 0; } | ||||
| EOF | ||||
| if test "`($CC -c $CFLAGS $test.c) 2>&1`" = ""; then | ||||
| if try $CC -c $CFLAGS $test.c; then | ||||
|   sed < zconf.h "/^#ifdef HAVE_STDARG_H.* may be/s/def HAVE_STDARG_H\(.*\) may be/ 1\1 was/" > zconf.temp.h | ||||
|   mv zconf.temp.h zconf.h | ||||
|   echo "Checking for stdarg.h... Yes." | ||||
|   echo "Checking for stdarg.h... Yes." | tee -a configure.log | ||||
| else | ||||
|   echo "Checking for stdarg.h... No." | ||||
|   echo "Checking for stdarg.h... No." | tee -a configure.log | ||||
| fi | ||||
|  | ||||
| if test $zprefix -eq 1; then | ||||
|   sed < zconf.h "/#ifdef Z_PREFIX.* may be/s/def Z_PREFIX\(.*\) may be/ 1\1 was/" > zconf.temp.h | ||||
|   mv zconf.temp.h zconf.h | ||||
|   echo "Using z_ prefix on all symbols." | ||||
|   echo >> configure.log | ||||
|   echo "Using z_ prefix on all symbols." | tee -a configure.log | ||||
| fi | ||||
|  | ||||
| if test $solo -eq 1; then | ||||
| @@ -352,207 +418,196 @@ if test $cover -eq 1; then | ||||
|   CFLAGS="${CFLAGS} -fprofile-arcs -ftest-coverage" | ||||
| fi | ||||
|  | ||||
| echo >> configure.log | ||||
|  | ||||
| cat > $test.c <<EOF | ||||
| #include <stdio.h> | ||||
| #include <stdarg.h> | ||||
| #include "zconf.h" | ||||
|  | ||||
| int main() | ||||
| { | ||||
| #ifndef STDC | ||||
|   choke me | ||||
| #endif | ||||
|  | ||||
|   return 0; | ||||
| } | ||||
| EOF | ||||
|  | ||||
| if test "`($CC -c $CFLAGS $test.c) 2>&1`" = ""; then | ||||
|   echo "Checking whether to use vs[n]printf() or s[n]printf()... using vs[n]printf()." | ||||
| if try $CC -c $CFLAGS $test.c; then | ||||
|   echo "Checking whether to use vs[n]printf() or s[n]printf()... using vs[n]printf()." | tee -a configure.log | ||||
|  | ||||
|   echo >> configure.log | ||||
|   cat > $test.c <<EOF | ||||
| #include <stdio.h> | ||||
| #include <stdarg.h> | ||||
|  | ||||
| int mytest(const char *fmt, ...) | ||||
| { | ||||
|   char buf[20]; | ||||
|   va_list ap; | ||||
|  | ||||
|   va_start(ap, fmt); | ||||
|   vsnprintf(buf, sizeof(buf), fmt, ap); | ||||
|   va_end(ap); | ||||
|   return 0; | ||||
| } | ||||
|  | ||||
| int main() | ||||
| { | ||||
|   return (mytest("Hello%d\n", 1)); | ||||
| } | ||||
| EOF | ||||
|   if test "`($CC $CFLAGS -o $test $test.c) 2>&1`" = ""; then | ||||
|     echo "Checking for vsnprintf() in stdio.h... Yes." | ||||
|   if try $CC $CFLAGS -o $test $test.c; then | ||||
|     echo "Checking for vsnprintf() in stdio.h... Yes." | tee -a configure.log | ||||
|  | ||||
|     echo >> configure.log | ||||
|     cat >$test.c <<EOF | ||||
| #include <stdio.h> | ||||
| #include <stdarg.h> | ||||
|  | ||||
| int mytest(const char *fmt, ...) | ||||
| { | ||||
|   int n; | ||||
|   char buf[20]; | ||||
|   va_list ap; | ||||
|  | ||||
|   va_start(ap, fmt); | ||||
|   n = vsnprintf(buf, sizeof(buf), fmt, ap); | ||||
|   va_end(ap); | ||||
|   return n; | ||||
| } | ||||
|  | ||||
| int main() | ||||
| { | ||||
|   return (mytest("Hello%d\n", 1)); | ||||
| } | ||||
| EOF | ||||
|  | ||||
|     if test "`($CC -c $CFLAGS $test.c) 2>&1`" = ""; then | ||||
|       echo "Checking for return value of vsnprintf()... Yes." | ||||
|     if try $CC -c $CFLAGS $test.c; then | ||||
|       echo "Checking for return value of vsnprintf()... Yes." | tee -a configure.log | ||||
|     else | ||||
|       CFLAGS="$CFLAGS -DHAS_vsnprintf_void" | ||||
|       SFLAGS="$SFLAGS -DHAS_vsnprintf_void" | ||||
|       echo "Checking for return value of vsnprintf()... No." | ||||
|       echo "  WARNING: apparently vsnprintf() does not return a value. zlib" | ||||
|       echo "  can build but will be open to possible string-format security" | ||||
|       echo "  vulnerabilities." | ||||
|       echo "Checking for return value of vsnprintf()... No." | tee -a configure.log | ||||
|       echo "  WARNING: apparently vsnprintf() does not return a value. zlib" | tee -a configure.log | ||||
|       echo "  can build but will be open to possible string-format security" | tee -a configure.log | ||||
|       echo "  vulnerabilities." | tee -a configure.log | ||||
|     fi | ||||
|   else | ||||
|     CFLAGS="$CFLAGS -DNO_vsnprintf" | ||||
|     SFLAGS="$SFLAGS -DNO_vsnprintf" | ||||
|     echo "Checking for vsnprintf() in stdio.h... No." | ||||
|     echo "  WARNING: vsnprintf() not found, falling back to vsprintf(). zlib" | ||||
|     echo "  can build but will be open to possible buffer-overflow security" | ||||
|     echo "  vulnerabilities." | ||||
|     echo "Checking for vsnprintf() in stdio.h... No." | tee -a configure.log | ||||
|     echo "  WARNING: vsnprintf() not found, falling back to vsprintf(). zlib" | tee -a configure.log | ||||
|     echo "  can build but will be open to possible buffer-overflow security" | tee -a configure.log | ||||
|     echo "  vulnerabilities." | tee -a configure.log | ||||
|  | ||||
|     echo >> configure.log | ||||
|     cat >$test.c <<EOF | ||||
| #include <stdio.h> | ||||
| #include <stdarg.h> | ||||
|  | ||||
| int mytest(const char *fmt, ...) | ||||
| { | ||||
|   int n; | ||||
|   char buf[20]; | ||||
|   va_list ap; | ||||
|  | ||||
|   va_start(ap, fmt); | ||||
|   n = vsprintf(buf, fmt, ap); | ||||
|   va_end(ap); | ||||
|   return n; | ||||
| } | ||||
|  | ||||
| int main() | ||||
| { | ||||
|   return (mytest("Hello%d\n", 1)); | ||||
| } | ||||
| EOF | ||||
|  | ||||
|     if test "`($CC -c $CFLAGS $test.c) 2>&1`" = ""; then | ||||
|       echo "Checking for return value of vsprintf()... Yes." | ||||
|     if try $CC -c $CFLAGS $test.c; then | ||||
|       echo "Checking for return value of vsprintf()... Yes." | tee -a configure.log | ||||
|     else | ||||
|       CFLAGS="$CFLAGS -DHAS_vsprintf_void" | ||||
|       SFLAGS="$SFLAGS -DHAS_vsprintf_void" | ||||
|       echo "Checking for return value of vsprintf()... No." | ||||
|       echo "  WARNING: apparently vsprintf() does not return a value. zlib" | ||||
|       echo "  can build but will be open to possible string-format security" | ||||
|       echo "  vulnerabilities." | ||||
|       echo "Checking for return value of vsprintf()... No." | tee -a configure.log | ||||
|       echo "  WARNING: apparently vsprintf() does not return a value. zlib" | tee -a configure.log | ||||
|       echo "  can build but will be open to possible string-format security" | tee -a configure.log | ||||
|       echo "  vulnerabilities." | tee -a configure.log | ||||
|     fi | ||||
|   fi | ||||
| else | ||||
|   echo "Checking whether to use vs[n]printf() or s[n]printf()... using s[n]printf()." | ||||
|   echo "Checking whether to use vs[n]printf() or s[n]printf()... using s[n]printf()." | tee -a configure.log | ||||
|  | ||||
|   echo >> configure.log | ||||
|   cat >$test.c <<EOF | ||||
| #include <stdio.h> | ||||
|  | ||||
| int mytest() | ||||
| { | ||||
|   char buf[20]; | ||||
|  | ||||
|   snprintf(buf, sizeof(buf), "%s", "foo"); | ||||
|   return 0; | ||||
| } | ||||
|  | ||||
| int main() | ||||
| { | ||||
|   return (mytest()); | ||||
| } | ||||
| EOF | ||||
|  | ||||
|   if test "`($CC $CFLAGS -o $test $test.c) 2>&1`" = ""; then | ||||
|     echo "Checking for snprintf() in stdio.h... Yes." | ||||
|   if try $CC $CFLAGS -o $test $test.c; then | ||||
|     echo "Checking for snprintf() in stdio.h... Yes." | tee -a configure.log | ||||
|  | ||||
|     echo >> configure.log | ||||
|     cat >$test.c <<EOF | ||||
| #include <stdio.h> | ||||
|  | ||||
| int mytest() | ||||
| { | ||||
|   char buf[20]; | ||||
|  | ||||
|   return snprintf(buf, sizeof(buf), "%s", "foo"); | ||||
| } | ||||
|  | ||||
| int main() | ||||
| { | ||||
|   return (mytest()); | ||||
| } | ||||
| EOF | ||||
|  | ||||
|     if test "`($CC -c $CFLAGS $test.c) 2>&1`" = ""; then | ||||
|       echo "Checking for return value of snprintf()... Yes." | ||||
|     if try $CC -c $CFLAGS $test.c; then | ||||
|       echo "Checking for return value of snprintf()... Yes." | tee -a configure.log | ||||
|     else | ||||
|       CFLAGS="$CFLAGS -DHAS_snprintf_void" | ||||
|       SFLAGS="$SFLAGS -DHAS_snprintf_void" | ||||
|       echo "Checking for return value of snprintf()... No." | ||||
|       echo "  WARNING: apparently snprintf() does not return a value. zlib" | ||||
|       echo "  can build but will be open to possible string-format security" | ||||
|       echo "  vulnerabilities." | ||||
|       echo "Checking for return value of snprintf()... No." | tee -a configure.log | ||||
|       echo "  WARNING: apparently snprintf() does not return a value. zlib" | tee -a configure.log | ||||
|       echo "  can build but will be open to possible string-format security" | tee -a configure.log | ||||
|       echo "  vulnerabilities." | tee -a configure.log | ||||
|     fi | ||||
|   else | ||||
|     CFLAGS="$CFLAGS -DNO_snprintf" | ||||
|     SFLAGS="$SFLAGS -DNO_snprintf" | ||||
|     echo "Checking for snprintf() in stdio.h... No." | ||||
|     echo "  WARNING: snprintf() not found, falling back to sprintf(). zlib" | ||||
|     echo "  can build but will be open to possible buffer-overflow security" | ||||
|     echo "  vulnerabilities." | ||||
|     echo "Checking for snprintf() in stdio.h... No." | tee -a configure.log | ||||
|     echo "  WARNING: snprintf() not found, falling back to sprintf(). zlib" | tee -a configure.log | ||||
|     echo "  can build but will be open to possible buffer-overflow security" | tee -a configure.log | ||||
|     echo "  vulnerabilities." | tee -a configure.log | ||||
|  | ||||
|     echo >> configure.log | ||||
|     cat >$test.c <<EOF | ||||
| #include <stdio.h> | ||||
|  | ||||
| int mytest() | ||||
| { | ||||
|   char buf[20]; | ||||
|  | ||||
|   return sprintf(buf, "%s", "foo"); | ||||
| } | ||||
|  | ||||
| int main() | ||||
| { | ||||
|   return (mytest()); | ||||
| } | ||||
| EOF | ||||
|  | ||||
|     if test "`($CC -c $CFLAGS $test.c) 2>&1`" = ""; then | ||||
|       echo "Checking for return value of sprintf()... Yes." | ||||
|     if try $CC -c $CFLAGS $test.c; then | ||||
|       echo "Checking for return value of sprintf()... Yes." | tee -a configure.log | ||||
|     else | ||||
|       CFLAGS="$CFLAGS -DHAS_sprintf_void" | ||||
|       SFLAGS="$SFLAGS -DHAS_sprintf_void" | ||||
|       echo "Checking for return value of sprintf()... No." | ||||
|       echo "  WARNING: apparently sprintf() does not return a value. zlib" | ||||
|       echo "  can build but will be open to possible string-format security" | ||||
|       echo "  vulnerabilities." | ||||
|       echo "Checking for return value of sprintf()... No." | tee -a configure.log | ||||
|       echo "  WARNING: apparently sprintf() does not return a value. zlib" | tee -a configure.log | ||||
|       echo "  can build but will be open to possible string-format security" | tee -a configure.log | ||||
|       echo "  vulnerabilities." | tee -a configure.log | ||||
|     fi | ||||
|   fi | ||||
| fi | ||||
|  | ||||
| if test "$gcc" -eq 1; then | ||||
|   echo >> configure.log | ||||
|   cat > $test.c <<EOF | ||||
| #if ((__GNUC__-0) * 10 + __GNUC_MINOR__-0 >= 33) | ||||
| #  define ZLIB_INTERNAL __attribute__((visibility ("hidden"))) | ||||
| @@ -565,28 +620,51 @@ int main() | ||||
|   return 0; | ||||
| } | ||||
| EOF | ||||
|   if test "`($CC -c $CFLAGS $test.c) 2>&1`" = ""; then | ||||
|     echo "Checking for attribute(visibility) support... Yes." | ||||
|   if try $CC -c $CFLAGS $test.c; then | ||||
|     echo "Checking for attribute(visibility) support... Yes." | tee -a configure.log | ||||
|   else | ||||
|     CFLAGS="$CFLAGS -DNO_VIZ" | ||||
|     SFLAGS="$SFLAGS -DNO_VIZ" | ||||
|     echo "Checking for attribute(visibility) support... No." | ||||
|     echo "Checking for attribute(visibility) support... No." | tee -a configure.log | ||||
|   fi | ||||
| fi | ||||
|  | ||||
| CPP=${CPP-"$CC -E"} | ||||
| case $CFLAGS in | ||||
|   *ASMV*) | ||||
|     if test "`$NM $test.o | grep _hello`" = ""; then | ||||
|       CPP="$CPP -DNO_UNDERLINE" | ||||
|       echo Checking for underline in external names... No. | ||||
|     else | ||||
|       echo Checking for underline in external names... Yes. | ||||
|     fi ;; | ||||
| esac | ||||
|  | ||||
| rm -f $test.[co] $test $test$shared_ext $test.gcno | ||||
|  | ||||
| # show the results in the log | ||||
| echo >> configure.log | ||||
| echo ALL = $ALL >> configure.log | ||||
| echo AR = $AR >> configure.log | ||||
| echo ARFLAGS = $ARFLAGS >> configure.log | ||||
| echo CC = $CC >> configure.log | ||||
| echo CFLAGS = $CFLAGS >> configure.log | ||||
| echo CPP = $CPP >> configure.log | ||||
| echo EXE = $EXE >> configure.log | ||||
| echo LDCONFIG = $LDCONFIG >> configure.log | ||||
| echo LDFLAGS = $LDFLAGS >> configure.log | ||||
| echo LDSHARED = $LDSHARED >> configure.log | ||||
| echo LDSHAREDLIBC = $LDSHAREDLIBC >> configure.log | ||||
| echo OBJC = $OBJC >> configure.log | ||||
| echo PIC_OBJC = $PIC_OBJC >> configure.log | ||||
| echo RANLIB = $RANLIB >> configure.log | ||||
| echo SFLAGS = $SFLAGS >> configure.log | ||||
| echo SHAREDLIB = $SHAREDLIB >> configure.log | ||||
| echo SHAREDLIBM = $SHAREDLIBM >> configure.log | ||||
| echo SHAREDLIBV = $SHAREDLIBV >> configure.log | ||||
| echo STATICLIB = $STATICLIB >> configure.log | ||||
| echo TEST = $TEST >> configure.log | ||||
| echo VER = $VER >> configure.log | ||||
| echo exec_prefix = $exec_prefix >> configure.log | ||||
| echo includedir = $includedir >> configure.log | ||||
| echo libdir = $libdir >> configure.log | ||||
| echo mandir = $mandir >> configure.log | ||||
| echo prefix = $prefix >> configure.log | ||||
| echo sharedlibdir = $sharedlibdir >> configure.log | ||||
| echo uname = $uname >> configure.log | ||||
| echo -------------------- >> configure.log | ||||
| echo >> configure.log | ||||
| echo >> configure.log | ||||
|  | ||||
| # udpate Makefile | ||||
| sed < Makefile.in " | ||||
| /^CC *=/s#=.*#=$CC# | ||||
|   | ||||
| @@ -152,7 +152,7 @@ procedure DecompressToUserBuf(const InBuf: Pointer; InBytes: Integer; | ||||
|   const OutBuf: Pointer; BufSize: Integer); | ||||
|  | ||||
| const | ||||
|   zlib_version = '1.2.5.3'; | ||||
|   zlib_version = '1.2.6'; | ||||
|  | ||||
| type | ||||
|   EZlibError = class(Exception); | ||||
|   | ||||
| @@ -156,7 +156,7 @@ namespace DotZLibTests | ||||
|         public void Info_Version() | ||||
|         { | ||||
|             Info info = new Info(); | ||||
|             Assert.AreEqual("1.2.5.3", Info.Version); | ||||
|             Assert.AreEqual("1.2.6", Info.Version); | ||||
|             Assert.AreEqual(32, info.SizeOfUInt); | ||||
|             Assert.AreEqual(32, info.SizeOfULong); | ||||
|             Assert.AreEqual(32, info.SizeOfPointer); | ||||
|   | ||||
| @@ -1,5 +1,5 @@ | ||||
| /* inftree9.c -- generate Huffman trees for efficient decoding | ||||
|  * Copyright (C) 1995-2011 Mark Adler | ||||
|  * Copyright (C) 1995-2012 Mark Adler | ||||
|  * For conditions of distribution and use, see copyright notice in zlib.h | ||||
|  */ | ||||
|  | ||||
| @@ -9,7 +9,7 @@ | ||||
| #define MAXBITS 15 | ||||
|  | ||||
| const char inflate9_copyright[] = | ||||
|    " inflate9 1.2.5.3 Copyright 1995-2011 Mark Adler "; | ||||
|    " inflate9 1.2.6 Copyright 1995-2012 Mark Adler "; | ||||
| /* | ||||
|   If you use the zlib library in a product, an acknowledgment is welcome | ||||
|   in the documentation of your product. If for some reason you cannot | ||||
| @@ -64,7 +64,7 @@ unsigned short FAR *work; | ||||
|     static const unsigned short lext[31] = { /* Length codes 257..285 extra */ | ||||
|         128, 128, 128, 128, 128, 128, 128, 128, 129, 129, 129, 129, | ||||
|         130, 130, 130, 130, 131, 131, 131, 131, 132, 132, 132, 132, | ||||
|         133, 133, 133, 133, 144, 71, 64}; | ||||
|         133, 133, 133, 133, 144, 203, 69}; | ||||
|     static const unsigned short dbase[32] = { /* Distance codes 0..31 base */ | ||||
|         1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, | ||||
|         65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, | ||||
|   | ||||
| @@ -1,13 +1,22 @@ | ||||
| lib_LTLIBRARIES = libminizip.la | ||||
|  | ||||
| if COND_DEMOS | ||||
| bin_PROGRAMS = miniunzip minizip | ||||
| endif | ||||
|  | ||||
| zlib_top_srcdir = $(top_srcdir)/../.. | ||||
| zlib_top_builddir = $(top_builddir)/../.. | ||||
|  | ||||
| AM_CPPFLAGS = -I$(zlib_top_srcdir) | ||||
| AM_LDFLAGS = -L$(zlib_top_builddir) | ||||
|  | ||||
| libminizip_la_SOURCES = \ | ||||
| 	ioapi.c \ | ||||
| 	mztools.c \ | ||||
| 	unzip.c \ | ||||
| 	zip.c | ||||
|  | ||||
| libminizip_la_CFLAGS = -I../.. -L../.. | ||||
| libminizip_la_LDFLAGS = -version-info 1:0:0 -lz | ||||
| libminizip_la_LDFLAGS = $(AM_LDFLAGS) -version-info 1:0:0 -lz | ||||
|  | ||||
| minizip_includedir = $(includedir)/minizip | ||||
| minizip_include_HEADERS = \ | ||||
| @@ -26,3 +35,4 @@ miniunzip_SOURCES = miniunz.c | ||||
| miniunzip_LDADD = libminizip.la | ||||
|  | ||||
| minizip_SOURCES = minizip.c | ||||
| minizip_LDADD = libminizip.la -lz | ||||
|   | ||||
| @@ -1,11 +1,21 @@ | ||||
| #                                               -*- Autoconf -*- | ||||
| # Process this file with autoconf to produce a configure script. | ||||
|  | ||||
| AC_INIT([minizip], [@ZLIB_VER@], [bugzilla.redhat.com]) | ||||
| AC_CONFIG_SRCDIR([minigzip.c]) | ||||
| AC_INIT([minizip], [1.2.6], [bugzilla.redhat.com]) | ||||
| AC_CONFIG_SRCDIR([minizip.c]) | ||||
| AM_INIT_AUTOMAKE([foreign]) | ||||
| LT_INIT | ||||
|  | ||||
| AC_MSG_CHECKING([whether to build example programs]) | ||||
| AC_ARG_ENABLE([demos], AC_HELP_STRING([--enable-demos], [build example programs])) | ||||
| AM_CONDITIONAL([COND_DEMOS], [test "$enable_demos" = yes]) | ||||
| if test "$enable_demos" = yes | ||||
| then | ||||
| 	AC_MSG_RESULT([yes]) | ||||
| else | ||||
| 	AC_MSG_RESULT([no]) | ||||
| fi | ||||
|  | ||||
| AC_SUBST([HAVE_UNISTD_H], [0]) | ||||
| AC_CHECK_HEADER([unistd.h], [HAVE_UNISTD_H=1], []) | ||||
| AC_CONFIG_FILES([Makefile minizip.pc]) | ||||
|   | ||||
| @@ -10,11 +10,11 @@ | ||||
|  | ||||
| */ | ||||
|  | ||||
| #if (defined(_WIN32)) | ||||
| #if defined(_WIN32) && (!(defined(_CRT_SECURE_NO_WARNINGS))) | ||||
|         #define _CRT_SECURE_NO_WARNINGS | ||||
| #endif | ||||
|  | ||||
| #ifdef __APPLE__ | ||||
| #if defined(__APPLE__) || defined(IOAPI_NO_64) | ||||
| // In darwin and perhaps other BSD variants off_t is a 64 bit value, hence no need for specific 64 bit functions | ||||
| #define FOPEN_FUNC(filename, mode) fopen(filename, mode) | ||||
| #define FTELLO_FUNC(stream) ftello(stream) | ||||
| @@ -59,7 +59,7 @@ ZPOS64_T call_ztell64 (const zlib_filefunc64_32_def* pfilefunc,voidpf filestream | ||||
|     else | ||||
|     { | ||||
|         uLong tell_uLong = (*(pfilefunc->ztell32_file))(pfilefunc->zfile_func64.opaque,filestream); | ||||
|         if ((tell_uLong) == ((uLong)-1)) | ||||
|         if ((tell_uLong) == MAXU32) | ||||
|             return (ZPOS64_T)-1; | ||||
|         else | ||||
|             return tell_uLong; | ||||
|   | ||||
| @@ -50,6 +50,11 @@ | ||||
| #define ftello64 ftell | ||||
| #define fseeko64 fseek | ||||
| #else | ||||
| #ifdef __FreeBSD__ | ||||
| #define fopen64 fopen | ||||
| #define ftello64 ftello | ||||
| #define fseeko64 fseeko | ||||
| #endif | ||||
| #ifdef _MSC_VER | ||||
|  #define fopen64 fopen | ||||
|  #if (_MSC_VER >= 1400) && (!(defined(NO_MSCVER_FILE64_FUNC))) | ||||
| @@ -86,6 +91,8 @@ typedef  64BIT_INT_CUSTOM_TYPE ZPOS64_T; | ||||
| typedef uint64_t ZPOS64_T; | ||||
| #else | ||||
|  | ||||
| /* Maximum unsigned 32-bit value used as placeholder for zip64 */ | ||||
| #define MAXU32 0xffffffff | ||||
|  | ||||
| #if defined(_MSC_VER) || defined(__BORLANDC__) | ||||
| typedef unsigned __int64 ZPOS64_T; | ||||
|   | ||||
| @@ -42,7 +42,7 @@ uLong* bytesRecovered; | ||||
|     int entries = 0; | ||||
|     uLong totalBytes = 0; | ||||
|     char header[30]; | ||||
|     char filename[256]; | ||||
|     char filename[1024]; | ||||
|     char extra[1024]; | ||||
|     int offset = 0; | ||||
|     int offsetCD = 0; | ||||
| @@ -73,6 +73,7 @@ uLong* bytesRecovered; | ||||
|  | ||||
|         /* Filename */ | ||||
|         if (fnsize > 0) { | ||||
|           if (fnsize < sizeof(filename)) { | ||||
|             if (fread(filename, 1, fnsize, fpZip) == fnsize) { | ||||
|                 if (fwrite(filename, 1, fnsize, fpOut) == fnsize) { | ||||
|                 offset += fnsize; | ||||
| @@ -84,6 +85,10 @@ uLong* bytesRecovered; | ||||
|               err = Z_ERRNO; | ||||
|               break; | ||||
|             } | ||||
|           } else { | ||||
|             err = Z_ERRNO; | ||||
|             break; | ||||
|           } | ||||
|         } else { | ||||
|           err = Z_STREAM_ERROR; | ||||
|           break; | ||||
| @@ -91,6 +96,7 @@ uLong* bytesRecovered; | ||||
|  | ||||
|         /* Extra field */ | ||||
|         if (extsize > 0) { | ||||
|           if (extsize < sizeof(extra)) { | ||||
|             if (fread(extra, 1, extsize, fpZip) == extsize) { | ||||
|               if (fwrite(extra, 1, extsize, fpOut) == extsize) { | ||||
|                 offset += extsize; | ||||
| @@ -102,6 +108,10 @@ uLong* bytesRecovered; | ||||
|               err = Z_ERRNO; | ||||
|               break; | ||||
|             } | ||||
|           } else { | ||||
|             err = Z_ERRNO; | ||||
|             break; | ||||
|           } | ||||
|         } | ||||
|  | ||||
|         /* Data */ | ||||
|   | ||||
| @@ -28,4 +28,10 @@ extern int ZEXPORT unzRepair(const char* file, | ||||
|                              uLong* nRecovered, | ||||
|                              uLong* bytesRecovered); | ||||
|  | ||||
|  | ||||
| #ifdef __cplusplus | ||||
| } | ||||
| #endif | ||||
|  | ||||
|  | ||||
| #endif | ||||
|   | ||||
| @@ -1040,26 +1040,26 @@ local int unz64local_GetCurrentFileInfoInternal (unzFile file, | ||||
|             { | ||||
|                                                         uLong uL; | ||||
|  | ||||
|                                                                 if(file_info.uncompressed_size == (ZPOS64_T)(unsigned long)-1) | ||||
|                                                                 if(file_info.uncompressed_size == MAXU32) | ||||
|                                                                 { | ||||
|                                                                         if (unz64local_getLong64(&s->z_filefunc, s->filestream,&file_info.uncompressed_size) != UNZ_OK) | ||||
|                                                                                         err=UNZ_ERRNO; | ||||
|                                                                 } | ||||
|  | ||||
|                                                                 if(file_info.compressed_size == (ZPOS64_T)(unsigned long)-1) | ||||
|                                                                 if(file_info.compressed_size == MAXU32) | ||||
|                                                                 { | ||||
|                                                                         if (unz64local_getLong64(&s->z_filefunc, s->filestream,&file_info.compressed_size) != UNZ_OK) | ||||
|                                                                                   err=UNZ_ERRNO; | ||||
|                                                                 } | ||||
|  | ||||
|                                                                 if(file_info_internal.offset_curfile == (ZPOS64_T)(unsigned long)-1) | ||||
|                                                                 if(file_info_internal.offset_curfile == MAXU32) | ||||
|                                                                 { | ||||
|                                                                         /* Relative Header offset */ | ||||
|                                                                         if (unz64local_getLong64(&s->z_filefunc, s->filestream,&file_info_internal.offset_curfile) != UNZ_OK) | ||||
|                                                                                 err=UNZ_ERRNO; | ||||
|                                                                 } | ||||
|  | ||||
|                                                                 if(file_info.disk_num_start == (unsigned long)-1) | ||||
|                                                                 if(file_info.disk_num_start == MAXU32) | ||||
|                                                                 { | ||||
|                                                                         /* Disk Start Number */ | ||||
|                                                                         if (unz64local_getLong(&s->z_filefunc, s->filestream,&uL) != UNZ_OK) | ||||
| @@ -1696,7 +1696,7 @@ extern int ZEXPORT unzReadCurrentFile  (unzFile file, voidp buf, unsigned len) | ||||
|         return UNZ_PARAMERROR; | ||||
|  | ||||
|  | ||||
|     if ((pfile_in_zip_read_info->read_buffer == NULL)) | ||||
|     if (pfile_in_zip_read_info->read_buffer == NULL) | ||||
|         return UNZ_END_OF_LIST_OF_FILE; | ||||
|     if (len==0) | ||||
|         return 0; | ||||
|   | ||||
| @@ -1067,6 +1067,7 @@ extern int ZEXPORT zipOpenNewFileInZip4_64 (zipFile file, const char* filename, | ||||
|     int err = ZIP_OK; | ||||
|  | ||||
| #    ifdef NOCRYPT | ||||
|     (crcForCrypting); | ||||
|     if (password != NULL) | ||||
|         return ZIP_PARAMERROR; | ||||
| #    endif | ||||
| @@ -1710,7 +1711,7 @@ extern int ZEXPORT zipCloseFileInZipRaw64 (zipFile file, ZPOS64_T uncompressed_s | ||||
|         if (err==ZIP_OK) | ||||
|             err = zip64local_putValue(&zi->z_filefunc,zi->filestream,crc32,4); /* crc 32, unknown */ | ||||
|  | ||||
|         if(uncompressed_size >= 0xffffffff) | ||||
|         if(uncompressed_size >= 0xffffffff || compressed_size >= 0xffffffff ) | ||||
|         { | ||||
|           if(zi->ci.pos_zip64extrainfo > 0) | ||||
|           { | ||||
| @@ -1724,6 +1725,8 @@ extern int ZEXPORT zipCloseFileInZipRaw64 (zipFile file, ZPOS64_T uncompressed_s | ||||
|             if (err==ZIP_OK) /* uncompressed size, unknown */ | ||||
|               err = zip64local_putValue(&zi->z_filefunc, zi->filestream, compressed_size, 8); | ||||
|           } | ||||
|           else | ||||
|               err = ZIP_BADZIPFILE; // Caller passed zip64 = 0, so no room for zip64 info -> fatal | ||||
|         } | ||||
|         else | ||||
|         { | ||||
| @@ -1919,7 +1922,7 @@ extern int ZEXPORT zipClose (zipFile file, const char* global_comment) | ||||
|     free_linkedlist(&(zi->central_dir)); | ||||
|  | ||||
|     pos = centraldir_pos_inzip - zi->add_position_when_writting_offset; | ||||
|     if(pos >= 0xffffffff) | ||||
|     if(pos >= 0xffffffff || zi->number_entry > 0xFFFF) | ||||
|     { | ||||
|       ZPOS64_T Zip64EOCDpos = ZTELL64(zi->z_filefunc,zi->filestream); | ||||
|       Write_Zip64EndOfCentralDirectoryRecord(zi, size_centraldir, centraldir_pos_inzip); | ||||
|   | ||||
| @@ -10,7 +10,8 @@ unit zlibpas; | ||||
| interface | ||||
|  | ||||
| const | ||||
|   ZLIB_VERSION = '1.2.5.3'; | ||||
|   ZLIB_VERSION = '1.2.6'; | ||||
|   ZLIB_VERNUM  = $1260; | ||||
|  | ||||
| type | ||||
|   alloc_func = function(opaque: Pointer; items, size: Integer): Pointer; | ||||
| @@ -45,6 +46,23 @@ type | ||||
|     reserved: LongInt;    (* reserved for future use *) | ||||
|   end; | ||||
|  | ||||
|   gz_headerp = ^gz_header; | ||||
|   gz_header = packed record | ||||
|     text: Integer;        (* true if compressed data believed to be text *) | ||||
|     time: LongInt;        (* modification time *) | ||||
|     xflags: Integer;      (* extra flags (not used when writing a gzip file) *) | ||||
|     os: Integer;          (* operating system *) | ||||
|     extra: PChar;         (* pointer to extra field or Z_NULL if none *) | ||||
|     extra_len: Integer;   (* extra field length (valid if extra != Z_NULL) *) | ||||
|     extra_max: Integer;   (* space at extra (only when reading header) *) | ||||
|     name: PChar;          (* pointer to zero-terminated file name or Z_NULL *) | ||||
|     name_max: Integer;    (* space at name (only when reading header) *) | ||||
|     comment: PChar;       (* pointer to zero-terminated comment or Z_NULL *) | ||||
|     comm_max: Integer;    (* space at comment (only when reading header) *) | ||||
|     hcrc: Integer;        (* true if there was or will be a header crc *) | ||||
|     done: Integer;        (* true when done reading gzip header *) | ||||
|   end; | ||||
|  | ||||
| (* constants *) | ||||
| const | ||||
|   Z_NO_FLUSH      = 0; | ||||
| @@ -52,6 +70,8 @@ const | ||||
|   Z_SYNC_FLUSH    = 2; | ||||
|   Z_FULL_FLUSH    = 3; | ||||
|   Z_FINISH        = 4; | ||||
|   Z_BLOCK         = 5; | ||||
|   Z_TREES         = 6; | ||||
|  | ||||
|   Z_OK            =  0; | ||||
|   Z_STREAM_END    =  1; | ||||
| @@ -71,9 +91,11 @@ const | ||||
|   Z_FILTERED            = 1; | ||||
|   Z_HUFFMAN_ONLY        = 2; | ||||
|   Z_RLE                 = 3; | ||||
|   Z_FIXED               = 4; | ||||
|   Z_DEFAULT_STRATEGY    = 0; | ||||
|  | ||||
|   Z_BINARY   = 0; | ||||
|   Z_TEXT     = 1; | ||||
|   Z_ASCII    = 1; | ||||
|   Z_UNKNOWN  = 2; | ||||
|  | ||||
| @@ -96,15 +118,21 @@ function deflateSetDictionary(var strm: z_stream; const dictionary: PChar; | ||||
| function deflateCopy(var dest, source: z_stream): Integer; | ||||
| function deflateReset(var strm: z_stream): Integer; | ||||
| function deflateParams(var strm: z_stream; level, strategy: Integer): Integer; | ||||
| function deflateTune(var strm: z_stream; good_length, max_lazy, nice_length, max_chain: Integer): Integer; | ||||
| function deflateBound(var strm: z_stream; sourceLen: LongInt): LongInt; | ||||
| function deflatePending(var strm: z_stream; var pending: Integer; var bits: Integer): Integer; | ||||
| function deflatePrime(var strm: z_stream; bits, value: Integer): Integer; | ||||
| function deflateSetHeader(var strm: z_stream; head: gz_header): Integer; | ||||
| function inflateInit2(var strm: z_stream; windowBits: Integer): Integer; | ||||
| function inflateSetDictionary(var strm: z_stream; const dictionary: PChar; | ||||
|                               dictLength: Integer): Integer; | ||||
| function inflateSync(var strm: z_stream): Integer; | ||||
| function inflateCopy(var dest, source: z_stream): Integer; | ||||
| function inflateReset(var strm: z_stream): Integer; | ||||
| function inflateReset2(var strm: z_stream; windowBits: Integer): Integer; | ||||
| function inflatePrime(var strm: z_stream; bits, value: Integer): Integer; | ||||
| function inflateMark(var strm: z_stream): LongInt; | ||||
| function inflateGetHeader(var strm: z_stream; var head: gz_header): Integer; | ||||
| function inflateBackInit(var strm: z_stream; | ||||
|                          windowBits: Integer; window: PChar): Integer; | ||||
| function inflateBack(var strm: z_stream; in_fn: in_func; in_desc: Pointer; | ||||
| @@ -124,7 +152,9 @@ function uncompress(dest: PChar; var destLen: LongInt; | ||||
|  | ||||
| (* checksum functions *) | ||||
| function adler32(adler: LongInt; const buf: PChar; len: Integer): LongInt; | ||||
| function adler32_combine(adler1, adler2, len2: LongInt): LongInt; | ||||
| function crc32(crc: LongInt; const buf: PChar; len: Integer): LongInt; | ||||
| function crc32_combine(crc1, crc2, len2: LongInt): LongInt; | ||||
|  | ||||
| (* various hacks, don't look :) *) | ||||
| function deflateInit_(var strm: z_stream; level: Integer; | ||||
| @@ -156,10 +186,12 @@ implementation | ||||
| {$L zutil.obj} | ||||
|  | ||||
| function adler32; external; | ||||
| function adler32_combine; external; | ||||
| function compress; external; | ||||
| function compress2; external; | ||||
| function compressBound; external; | ||||
| function crc32; external; | ||||
| function crc32_combine; external; | ||||
| function deflate; external; | ||||
| function deflateBound; external; | ||||
| function deflateCopy; external; | ||||
| @@ -171,15 +203,21 @@ function deflatePending; external; | ||||
| function deflatePrime; external; | ||||
| function deflateReset; external; | ||||
| function deflateSetDictionary; external; | ||||
| function deflateSetHeader; external; | ||||
| function deflateTune; external; | ||||
| function inflate; external; | ||||
| function inflateBack; external; | ||||
| function inflateBackEnd; external; | ||||
| function inflateBackInit_; external; | ||||
| function inflateCopy; external; | ||||
| function inflateEnd; external; | ||||
| function inflateGetHeader; external; | ||||
| function inflateInit_; external; | ||||
| function inflateInit2_; external; | ||||
| function inflateMark; external; | ||||
| function inflatePrime; external; | ||||
| function inflateReset; external; | ||||
| function inflateReset2; external; | ||||
| function inflateSetDictionary; external; | ||||
| function inflateSync; external; | ||||
| function uncompress; external; | ||||
|   | ||||
| @@ -2,8 +2,8 @@ | ||||
|  | ||||
| #define IDR_VERSION1  1 | ||||
| IDR_VERSION1	VERSIONINFO	MOVEABLE IMPURE LOADONCALL DISCARDABLE | ||||
|   FILEVERSION	 1.2.5.3,1 | ||||
|   PRODUCTVERSION 1.2.5.3,1 | ||||
|   FILEVERSION	 1.2.6,1 | ||||
|   PRODUCTVERSION 1.2.6,1 | ||||
|   FILEFLAGSMASK	VS_FFI_FILEFLAGSMASK | ||||
|   FILEFLAGS	0 | ||||
|   FILEOS	VOS_DOS_WINDOWS32 | ||||
| @@ -17,12 +17,12 @@ BEGIN | ||||
|  | ||||
|     BEGIN | ||||
|       VALUE "FileDescription", "zlib data compression and ZIP file I/O library\0" | ||||
|       VALUE "FileVersion",	"1.2.5.3\0" | ||||
|       VALUE "FileVersion",	"1.2.6\0" | ||||
|       VALUE "InternalName",	"zlib\0" | ||||
|       VALUE "OriginalFilename",	"zlib.dll\0" | ||||
|       VALUE "ProductName",	"ZLib.DLL\0" | ||||
|       VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0" | ||||
|       VALUE "LegalCopyright", "(C) 1995-2011 Jean-loup Gailly & Mark Adler\0" | ||||
|       VALUE "LegalCopyright", "(C) 1995-2012 Jean-loup Gailly & Mark Adler\0" | ||||
|     END | ||||
|   END | ||||
|   BLOCK "VarFileInfo" | ||||
|   | ||||
| @@ -131,7 +131,7 @@ EXPORTS | ||||
|         inflateUndermine                        @160 | ||||
|  | ||||
| ; zlib1 v1.2.6 added: | ||||
|         gzgetc_                                 @30 | ||||
|         gzgetc_                                 @161 | ||||
|         gzflags                                 @162 | ||||
|         inflateResetKeep                        @163 | ||||
| 	deflateResetKeep			@164 | ||||
|   | ||||
| @@ -2,8 +2,8 @@ | ||||
|  | ||||
| #define IDR_VERSION1  1 | ||||
| IDR_VERSION1	VERSIONINFO	MOVEABLE IMPURE LOADONCALL DISCARDABLE | ||||
|   FILEVERSION	 1.2.5.3,1 | ||||
|   PRODUCTVERSION 1.2.5.3,1 | ||||
|   FILEVERSION	 1.2.6,1 | ||||
|   PRODUCTVERSION 1.2.6,1 | ||||
|   FILEFLAGSMASK	VS_FFI_FILEFLAGSMASK | ||||
|   FILEFLAGS	0 | ||||
|   FILEOS	VOS_DOS_WINDOWS32 | ||||
| @@ -17,12 +17,12 @@ BEGIN | ||||
|  | ||||
|     BEGIN | ||||
|       VALUE "FileDescription", "zlib data compression and ZIP file I/O library\0" | ||||
|       VALUE "FileVersion",	"1.2.5.3\0" | ||||
|       VALUE "FileVersion",	"1.2.6\0" | ||||
|       VALUE "InternalName",	"zlib\0" | ||||
|       VALUE "OriginalFilename",	"zlib.dll\0" | ||||
|       VALUE "ProductName",	"ZLib.DLL\0" | ||||
|       VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0" | ||||
|       VALUE "LegalCopyright", "(C) 1995-2011 Jean-loup Gailly & Mark Adler\0" | ||||
|       VALUE "LegalCopyright", "(C) 1995-2012 Jean-loup Gailly & Mark Adler\0" | ||||
|     END | ||||
|   END | ||||
|   BLOCK "VarFileInfo" | ||||
|   | ||||
| @@ -131,7 +131,7 @@ EXPORTS | ||||
|         inflateUndermine                        @160 | ||||
|  | ||||
| ; zlib1 v1.2.6 added: | ||||
|         gzgetc_                                 @30 | ||||
|         gzgetc_                                 @161 | ||||
|         gzflags                                 @162 | ||||
|         inflateResetKeep                        @163 | ||||
| 	deflateResetKeep			@164 | ||||
|   | ||||
| @@ -52,7 +52,7 @@ | ||||
| #include "deflate.h" | ||||
|  | ||||
| const char deflate_copyright[] = | ||||
|    " deflate 1.2.5.3 Copyright 1995-2012 Jean-loup Gailly and Mark Adler "; | ||||
|    " deflate 1.2.6 Copyright 1995-2012 Jean-loup Gailly and Mark Adler "; | ||||
| /* | ||||
|   If you use the zlib library in a product, an acknowledgment is welcome | ||||
|   in the documentation of your product. If for some reason you cannot | ||||
|   | ||||
							
								
								
									
										4
									
								
								gzguts.h
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								gzguts.h
									
									
									
									
									
								
							| @@ -1,5 +1,5 @@ | ||||
| /* gzguts.h -- zlib internal header definitions for gz* operations | ||||
|  * Copyright (C) 2004, 2005, 2010, 2011 Mark Adler | ||||
|  * Copyright (C) 2004, 2005, 2010, 2011, 2012 Mark Adler | ||||
|  * For conditions of distribution and use, see copyright notice in zlib.h | ||||
|  */ | ||||
|  | ||||
| @@ -27,7 +27,7 @@ | ||||
| #endif | ||||
| #include <fcntl.h> | ||||
|  | ||||
| #if defined(MSDOS) && defined(__TURBOC__) | ||||
| #ifdef __TURBOC__ | ||||
| #  include <io.h> | ||||
| #endif | ||||
|  | ||||
|   | ||||
| @@ -1,5 +1,5 @@ | ||||
| /* gzwrite.c -- zlib functions for writing gzip files | ||||
|  * Copyright (C) 2004, 2005, 2010, 2011 Mark Adler | ||||
|  * Copyright (C) 2004, 2005, 2010, 2011, 2012 Mark Adler | ||||
|  * For conditions of distribution and use, see copyright notice in zlib.h | ||||
|  */ | ||||
|  | ||||
| @@ -272,14 +272,14 @@ int ZEXPORT gzputc(file, c) | ||||
|             strm->next_in = state->in; | ||||
|         strm->next_in[strm->avail_in++] = c; | ||||
|         state->x.pos++; | ||||
|         return c; | ||||
|         return c & 0xff; | ||||
|     } | ||||
|  | ||||
|     /* no room in buffer or not initialized, use gz_write() */ | ||||
|     buf[0] = c; | ||||
|     if (gzwrite(file, buf, 1) != 1) | ||||
|         return -1; | ||||
|     return c; | ||||
|     return c & 0xff; | ||||
| } | ||||
|  | ||||
| /* -- see zlib.h -- */ | ||||
|   | ||||
| @@ -1,5 +1,5 @@ | ||||
| /* inftrees.c -- generate Huffman trees for efficient decoding | ||||
|  * Copyright (C) 1995-2011 Mark Adler | ||||
|  * Copyright (C) 1995-2012 Mark Adler | ||||
|  * For conditions of distribution and use, see copyright notice in zlib.h | ||||
|  */ | ||||
|  | ||||
| @@ -9,7 +9,7 @@ | ||||
| #define MAXBITS 15 | ||||
|  | ||||
| const char inflate_copyright[] = | ||||
|    " inflate 1.2.5.3 Copyright 1995-2011 Mark Adler "; | ||||
|    " inflate 1.2.6 Copyright 1995-2012 Mark Adler "; | ||||
| /* | ||||
|   If you use the zlib library in a product, an acknowledgment is welcome | ||||
|   in the documentation of your product. If for some reason you cannot | ||||
| @@ -62,7 +62,7 @@ unsigned short FAR *work; | ||||
|         35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0}; | ||||
|     static const unsigned short lext[31] = { /* Length codes 257..285 extra */ | ||||
|         16, 16, 16, 16, 16, 16, 16, 16, 17, 17, 17, 17, 18, 18, 18, 18, | ||||
|         19, 19, 19, 19, 20, 20, 20, 20, 21, 21, 21, 21, 16, 71, 64}; | ||||
|         19, 19, 19, 19, 20, 20, 20, 20, 21, 21, 21, 21, 16, 203, 69}; | ||||
|     static const unsigned short dbase[32] = { /* Distance codes 0..29 base */ | ||||
|         1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, | ||||
|         257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, | ||||
|   | ||||
| @@ -25,10 +25,10 @@ | ||||
|       <QPG:Files> | ||||
|          <QPG:Add file="../zconf.h" install="/opt/include/" user="root:sys" permission="644"/> | ||||
|          <QPG:Add file="../zlib.h" install="/opt/include/" user="root:sys" permission="644"/> | ||||
|          <QPG:Add file="../libz.so.1.2.5.3" install="/opt/lib/" user="root:bin" permission="644"/> | ||||
|          <QPG:Add file="libz.so" install="/opt/lib/" component="dev" filetype="symlink" linkto="libz.so.1.2.5.3"/> | ||||
|          <QPG:Add file="libz.so.1" install="/opt/lib/" filetype="symlink" linkto="libz.so.1.2.5.3"/> | ||||
|          <QPG:Add file="../libz.so.1.2.5.3" install="/opt/lib/" component="slib"/> | ||||
|          <QPG:Add file="../libz.so.1.2.6" install="/opt/lib/" user="root:bin" permission="644"/> | ||||
|          <QPG:Add file="libz.so" install="/opt/lib/" component="dev" filetype="symlink" linkto="libz.so.1.2.6"/> | ||||
|          <QPG:Add file="libz.so.1" install="/opt/lib/" filetype="symlink" linkto="libz.so.1.2.6"/> | ||||
|          <QPG:Add file="../libz.so.1.2.6" install="/opt/lib/" component="slib"/> | ||||
|       </QPG:Files> | ||||
|  | ||||
|       <QPG:PackageFilter> | ||||
| @@ -63,7 +63,7 @@ | ||||
|             </QPM:ProductDescription> | ||||
|  | ||||
|             <QPM:ReleaseDescription> | ||||
|                <QPM:ReleaseVersion>1.2.5.3</QPM:ReleaseVersion> | ||||
|                <QPM:ReleaseVersion>1.2.6</QPM:ReleaseVersion> | ||||
|                <QPM:ReleaseUrgency>Medium</QPM:ReleaseUrgency> | ||||
|                <QPM:ReleaseStability>Stable</QPM:ReleaseStability> | ||||
|                <QPM:ReleaseNoteMinor></QPM:ReleaseNoteMinor> | ||||
|   | ||||
| @@ -1,6 +1,6 @@ | ||||
| <?xml version="1.0" ?> | ||||
| <package name="zlib" version="1.2.5.3"> | ||||
|     <library name="zlib" dlversion="1.2.5.3" dlname="z"> | ||||
| <package name="zlib" version="1.2.6"> | ||||
|     <library name="zlib" dlversion="1.2.6" dlname="z"> | ||||
| 	<property name="description"> zip compression library </property> | ||||
| 	<property name="include-target-dir" value="$(@PACKAGE/install-includedir)" /> | ||||
|  | ||||
|   | ||||
| @@ -123,6 +123,10 @@ zlibrc.o: win32/zlib1.rc | ||||
| .PHONY: install uninstall clean | ||||
|  | ||||
| install: zlib.h zconf.h $(STATICLIB) $(IMPLIB) | ||||
| 	@if test -z "$(INCLUDE_PATH)" -o -z "$(LIBRARY_PATH)" -o -z "$(BINARY_PATH)"; then \ | ||||
| 		echo INCLUDE_PATH, LIBRARY_PATH, and BINARY_PATH must be specified; \ | ||||
| 		exit 1; \ | ||||
| 	fi | ||||
| 	-@mkdir -p $(INCLUDE_PATH) | ||||
| 	-@mkdir -p $(LIBRARY_PATH) $(LIBRARY_PATH)/pkgconfig | ||||
| 	-if [ "$(SHARED_MODE)" = "1" ]; then \ | ||||
|   | ||||
| @@ -6,8 +6,8 @@ | ||||
| #   nmake -f win32/Makefile.msc LOC=-DFOO                (nonstandard build) | ||||
| #   nmake -f win32/Makefile.msc LOC="-DASMV -DASMINF" \ | ||||
| #         OBJA="inffas32.obj match686.obj"               (use ASM code, x86) | ||||
| #   nmake -f win32/Makefile.msc AS=ml64 LOC="-DASMV -DASMINF" \ | ||||
| #         OBJA="inffasx64.obj gvmat64.obj inffas8664.c"  (use ASM code, x64) | ||||
| #   nmake -f win32/Makefile.msc AS=ml64 LOC="-DASMV -DASMINF -I." \ | ||||
| #         OBJA="inffasx64.obj gvmat64.obj inffas8664.obj"  (use ASM code, x64) | ||||
|  | ||||
| # optional build flags | ||||
| LOC = | ||||
|   | ||||
							
								
								
									
										4
									
								
								zlib.3
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								zlib.3
									
									
									
									
									
								
							| @@ -1,4 +1,4 @@ | ||||
| .TH ZLIB 3 "15 Jan 2012" | ||||
| .TH ZLIB 3 "29 Jan 2012" | ||||
| .SH NAME | ||||
| zlib \- compression/decompression library | ||||
| .SH SYNOPSIS | ||||
| @@ -125,7 +125,7 @@ before asking for help. | ||||
| Send questions and/or comments to zlib@gzip.org, | ||||
| or (for the Windows DLL version) to Gilles Vollant (info@winimage.com). | ||||
| .SH AUTHORS | ||||
| Version 1.2.5.3 | ||||
| Version 1.2.6 | ||||
| Copyright (C) 1995-2012 Jean-loup Gailly (jloup@gzip.org) | ||||
| and Mark Adler (madler@alumni.caltech.edu). | ||||
| .LP | ||||
|   | ||||
							
								
								
									
										
											BIN
										
									
								
								zlib.3.pdf
									
									
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								zlib.3.pdf
									
									
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										10
									
								
								zlib.h
									
									
									
									
									
								
							
							
						
						
									
										10
									
								
								zlib.h
									
									
									
									
									
								
							| @@ -1,5 +1,5 @@ | ||||
| /* zlib.h -- interface of the 'zlib' general purpose compression library | ||||
|   version 1.2.5.3, January 15th, 2012 | ||||
|   version 1.2.6, January 29th, 2012 | ||||
|  | ||||
|   Copyright (C) 1995-2012 Jean-loup Gailly and Mark Adler | ||||
|  | ||||
| @@ -37,12 +37,12 @@ | ||||
| extern "C" { | ||||
| #endif | ||||
|  | ||||
| #define ZLIB_VERSION "1.2.5.3" | ||||
| #define ZLIB_VERNUM 0x1253 | ||||
| #define ZLIB_VERSION "1.2.6" | ||||
| #define ZLIB_VERNUM 0x1260 | ||||
| #define ZLIB_VER_MAJOR 1 | ||||
| #define ZLIB_VER_MINOR 2 | ||||
| #define ZLIB_VER_REVISION 5 | ||||
| #define ZLIB_VER_SUBREVISION 3 | ||||
| #define ZLIB_VER_REVISION 6 | ||||
| #define ZLIB_VER_SUBREVISION 0 | ||||
|  | ||||
| /* | ||||
|     The 'zlib' compression library provides in-memory compression and | ||||
|   | ||||
		Reference in New Issue
	
	Block a user