public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] zlib: Update to version 1.3
@ 2023-09-19 11:53 Adolf Belka
  0 siblings, 0 replies; 2+ messages in thread
From: Adolf Belka @ 2023-09-19 11:53 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1147 bytes --]

- IPFire-3.x
- Update from version 1.2.13 to 1.3
- Changelog
    1.3
	    Building using K&R (pre-ANSI) function definitions is no longer supported.
	    Fixed a bug in deflateBound() for level 0 and memLevel 9.
	    Fixed a bug when gzungetc() is used immediately after gzopen().
	    Fixed a bug when using gzflush() with a very small buffer.
	    Fixed a crash when gzsetparams() is attempted for a transparent write.
	    Fixed test/example.c to work with FORCE_STORED.
	    Fixed minizip to allow it to open an empty zip file.
	    Fixed reading disk number start on zip64 files in minizip.
	    Fixed a logic error in minizip argument processing.

Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
 zlib/zlib.nm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/zlib/zlib.nm b/zlib/zlib.nm
index 948252bc6..e832c9145 100644
--- a/zlib/zlib.nm
+++ b/zlib/zlib.nm
@@ -4,7 +4,7 @@
 ###############################################################################
 
 name       = zlib
-version    = 1.2.13
+version    = 1.3
 release    = 1
 
 groups     = System/Libraries
-- 
2.42.0


^ permalink raw reply	[flat|nested] 2+ messages in thread

* [PATCH] zlib: Update to version 1.3
  2023-08-27 10:17 [PATCH] git: Update to version 2.42.0 Adolf Belka
@ 2023-08-27 10:17 ` Adolf Belka
  0 siblings, 0 replies; 2+ messages in thread
From: Adolf Belka @ 2023-08-27 10:17 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 3170 bytes --]

- Update from version 1.2.13 to 1.3
- Update of rootfile
- Changelog
    1.3 (18 Aug 2023)
	- Remove K&R function definitions and zlib2ansi
	- Fix bug in deflateBound() for level 0 and memLevel 9
	- Fix bug when gzungetc() is used immediately after gzopen()
	- Fix bug when using gzflush() with a very small buffer
	- Fix crash when gzsetparams() attempted for transparent write
	- Fix test/example.c to work with FORCE_STORED
	- Rewrite of zran in examples (see zran.c version history)
	- Fix minizip to allow it to open an empty zip file
	- Fix reading disk number start on zip64 files in minizip
	- Fix logic error in minizip argument processing
	- Add minizip testing to Makefile
	- Read multiple bytes instead of byte-by-byte in minizip unzip.c
	- Add memory sanitizer to configure (--memory)
	- Various portability improvements
	- Various documentation improvements
	- Various spelling and typo corrections

Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
 config/rootfiles/common/zlib | 2 +-
 lfs/zlib                     | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/config/rootfiles/common/zlib b/config/rootfiles/common/zlib
index c1f23ab8a..596b14641 100644
--- a/config/rootfiles/common/zlib
+++ b/config/rootfiles/common/zlib
@@ -1,6 +1,6 @@
 lib/libz.so
 lib/libz.so.1
-lib/libz.so.1.2.13
+lib/libz.so.1.3
 #usr/include/zconf.h
 #usr/include/zlib.h
 #usr/lib/libz.a
diff --git a/lfs/zlib b/lfs/zlib
index 858abd0cd..914e1d855 100644
--- a/lfs/zlib
+++ b/lfs/zlib
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2022  IPFire Team  <info(a)ipfire.org>                     #
+# Copyright (C) 2007-2023  IPFire Team  <info(a)ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 1.2.13
+VER        = 1.3
 
 THISAPP    = zlib-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -47,7 +47,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = cefcd25989ce27e7d339af2a88455fcf64f6f5e647bedb0f05a45e4370a885fe45a60c023aa63e79b8ecf20ed3254d0052245f33f5769aca2838b42242be14a8
+$(DL_FILE)_BLAKE2 = 5fe0f32339267348a313f23a21e9588bdb180b7415be303c85f5f169444d019e5f176ef7322f6e64297c360acc2a6041c50e2f66d1860e5c392d8970990f176a
 
 install : $(TARGET)
 
@@ -77,7 +77,7 @@ $(subst %,%_BLAKE2,$(objects)) :
 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	@$(PREBUILD)
 	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
-
+	
 	cd $(DIR_APP) && CROSS_PREFIX=$(CROSS_PREFIX) ./configure --prefix=$(PREFIX) --shared
 	cd $(DIR_APP) && make $(MAKETUNING)
 	cd $(DIR_APP) && make install
-- 
2.42.0


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-09-19 11:53 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-09-19 11:53 [PATCH] zlib: Update to version 1.3 Adolf Belka
  -- strict thread matches above, loose matches on Subject: below --
2023-08-27 10:17 [PATCH] git: Update to version 2.42.0 Adolf Belka
2023-08-27 10:17 ` [PATCH] zlib: Update to version 1.3 Adolf Belka

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox