]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
libconfig: Update to version 1.8
authorAdolf Belka <adolf.belka@ipfire.org>
Sat, 24 May 2025 14:36:50 +0000 (16:36 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Sun, 25 May 2025 11:58:05 +0000 (11:58 +0000)
- 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>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
config/rootfiles/common/libconfig
lfs/libconfig

index 6c1e245ca92779adedaf94ca2cb9e88fefab4d28..77edb18c7dab46d64940ef4cdfb13424446c6701 100644 (file)
@@ -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
index d1407b636c38f14205edf37a45f68b2da8495ce1..e593d3bf85440989290a40dd2c6991ba2ef103c3 100644 (file)
@@ -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)