repack-zlib
authorDebian QA Group <packages@qa.debian.org>
Sat, 27 Feb 2016 18:07:25 +0000 (18:07 +0000)
committerAndreas Beckmann <anbe@debian.org>
Sat, 27 Feb 2016 18:07:25 +0000 (18:07 +0000)
Gbp-Pq: Name repack-zlib.patch

configure.in
libsrc/Makefile.am
libsrc/Wi/bif_file.c

index 30395a91fb0811bc3a7ae00c13d150527def6658..bd01536ad680f445dc917614d3023deee8ea5314 100644 (file)
@@ -2725,7 +2725,6 @@ AC_CONFIG_FILES([
        libsrc/util/Makefile
        libsrc/Wi/Makefile
        libsrc/Xml.new/Makefile
-       libsrc/zlib/Makefile
        appsrc/Makefile
        appsrc/ODS-Framework/Makefile
        appsrc/ODS-Addressbook/Makefile
index 7f264aba5019da26b51581d4390903feb153da3e..6aa34bab94bb644eb6af256870799eecf80dcf36 100644 (file)
@@ -19,7 +19,7 @@
 #  
 #  
 
-SUBDIRS = util zlib odbcsdk Dk Thread langfunc Wi plugin Tidy Xml.new JDBCDriverType4
+SUBDIRS = util odbcsdk Dk Thread langfunc Wi plugin Tidy Xml.new JDBCDriverType4
 
 noinst_HEADERS = Dk.h libutil.h
 
index 0fc60df1d4dbc5709955b0cd879776b44cc0238a..0bcaf05bb3d47ab742c701929b6b3c16e3b67cf5 100644 (file)
@@ -4784,7 +4784,11 @@ gz_init_ses (dk_session_t * ses_out)
   level = 6;
 
   err = deflateInit2 (&(s->stream), level,
-      Z_DEFLATED, -MAX_WBITS, DEF_MEM_LEVEL, strategy);
+      Z_DEFLATED, -MAX_WBITS, 9, strategy);
+      // Debian maintainer: was:
+      //Z_DEFLATED, -MAX_WBITS, DEF_MEM_LEVEL, strategy);
+      // DEX_MEM_LEVEL hardcoded at 9, which is the value that
+      // results from upstream shipped zlib build anyway
 
   s->stream.next_out = s->outbuf = (Byte *) dk_alloc (Z_BUFSIZE);
   if (err != Z_OK || s->outbuf == Z_NULL)