libconfig: Update to version 1.8

Message ID 20250524143655.3304593-5-adolf.belka@ipfire.org
State Staged
Commit 8962704ad172f44fda8b25ec581dd7110821f4fc
Headers
Series libconfig: Update to version 1.8 |

Commit Message

Adolf Belka May 24, 2025, 2:36 p.m. UTC
  - Update from version 1.7.3 to 1.8
- Update of rootfile
- Changelog
    1.8
	  - Added support for binary integer values
	  - Miscellaneous code cleanup
    1.7.4
	  - Handle malloc failures by calling a fatal error handler
	  - New API to provide alternative fatal error handler
	  - Bugfixes to lookup (by name or path) routines
	  - Bugfixes to APIs with inconsistent const-ness
	  - Bugfixes to APIs with inconsistent use of short/unsigned short
	  - Bugfixes to int/int64 auto-conversion
	  - Various cleanup/fixes to build files
	  - Added some unit tests

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

Patch

diff --git a/config/rootfiles/common/libconfig b/config/rootfiles/common/libconfig
index 6c1e245ca..77edb18c7 100644
--- a/config/rootfiles/common/libconfig
+++ b/config/rootfiles/common/libconfig
@@ -1,6 +1,5 @@ 
 #usr/include/libconfig.h
 #usr/include/libconfig.h++
-#usr/lib/cmake
 #usr/lib/cmake/libconfig
 #usr/lib/cmake/libconfig++
 #usr/lib/cmake/libconfig++/libconfig++Config.cmake
@@ -9,12 +8,12 @@ 
 #usr/lib/libconfig++.la
 #usr/lib/libconfig++.so
 usr/lib/libconfig++.so.11
-usr/lib/libconfig++.so.11.1.0
+usr/lib/libconfig++.so.11.3.0
 #usr/lib/libconfig.a
 #usr/lib/libconfig.la
 #usr/lib/libconfig.so
 usr/lib/libconfig.so.11
-usr/lib/libconfig.so.11.1.0
+usr/lib/libconfig.so.11.3.0
 #usr/lib/pkgconfig/libconfig++.pc
 #usr/lib/pkgconfig/libconfig.pc
 #usr/share/info/libconfig.info
diff --git a/lfs/libconfig b/lfs/libconfig
index d1407b636..e593d3bf8 100644
--- a/lfs/libconfig
+++ b/lfs/libconfig
@@ -1,7 +1,7 @@ 
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2022  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2025  IPFire Team  <info@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.7.3
+VER        = 1.8
 
 THISAPP    = libconfig-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -43,7 +43,7 @@  objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 05d43022a937ed5ba35120170eca506051310cd7386b0a6a6c2f30186a079a02803c3d7ecb8dd49b50b5a706b282704605c250a306ada76b5241788eb1c575e6
+$(DL_FILE)_BLAKE2 = 3879fa62277332f9df07c3776d11e6ec6c7518fe83c83a6b50b15683a34d9d57f54bb550f911076654b0f62c40fa650167d8a233e01f05be0c5b5dcc9fc8749b
 
 install : $(TARGET)
 
@@ -74,7 +74,8 @@  $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	@$(PREBUILD)
 	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
 	cd $(DIR_APP) && autoreconf -vfi
-	cd $(DIR_APP) && ./configure --prefix=/usr
+	cd $(DIR_APP) && ./configure \
+				--prefix=/usr
 	cd $(DIR_APP) && make $(MAKETUNING)
 	cd $(DIR_APP) && make install
 	@rm -rf $(DIR_APP)