From patchwork Sun Dec 18 15:30:23 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matthias Fischer X-Patchwork-Id: 6312 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4NZmxm6vt0z3wfY for ; Sun, 18 Dec 2022 15:30:36 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4NZmxl1SJczcR; Sun, 18 Dec 2022 15:30:35 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4NZmxl06RWz2yZy; Sun, 18 Dec 2022 15:30:35 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4NZmxj6SwHz2xLF for ; Sun, 18 Dec 2022 15:30:33 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4NZmxj1wVbzYf for ; Sun, 18 Dec 2022 15:30:33 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1671377433; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=sCYJQKSx+7uS4gokwJhm+/8XEJC/dowaifL7Eh3uoCg=; b=LPpfDmLriVnx6llpG+ulBhEwKoiDGcblG2Z1Y2VbfI0SmnK5zVvolgkiwfEpUVHM9yM+r+ NKnss4VuMFVIRJBQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1671377433; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=sCYJQKSx+7uS4gokwJhm+/8XEJC/dowaifL7Eh3uoCg=; b=LN2/shHIcbolmxVfSz8xTlKPHLHq1M3ejPNK7NVJJIDL6lVel0/ZZI/8eE0bo8Yk/pGAtW lDqzx3fgMSkfUNFIMJmjFoKDgWd6yQP0i5kO16nV5YBkwBbJZa4P/5ACWuyaa2+bItFuv+ eiaXuCH2x68TaCd2TUJd8rlC4pJN1tq1Nzh9tI7yk1ZyUZQ9fuD4opWRvGSIfES8grXjC4 qXaazcPquyLwtoe9O90Ir3ZumJqwV/VRHCF0PALm4JvbfI/o8YqwTUff9gP+IyBNwWvOMJ kxFungroYJTwdPgFG606TOHVEUPRlJqtcz7Yyrk5LQmTEZVC/0rEmLFOwsX1GA== From: Matthias Fischer To: development@lists.ipfire.org Subject: [PATCH] libconfig: Update to 1.7.3 Date: Sun, 18 Dec 2022 16:30:23 +0100 Message-Id: <20221218153023.3602050-1-matthias.fischer@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" ...it just came my way... For details see: https://github.com/hyperrealm/libconfig/releases/tag/v1.7.3 This release includes some bugfixes and enhancements. Fixed a memory access violation bug in config_clear() Various fixes to CMake and Visual Studio build files Added a Setting::isString() method Fixed a bug in config_setting_lookup() where the setting itself (instead of NULL) would be returned if the path was not found. Renamed all remaining internal methods that lacked a 'libconfig_' prefix. Signed-off-by: Matthias Fischer Reviewed-by: Michael Tremer --- config/rootfiles/common/libconfig | 4 ++-- lfs/libconfig | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/config/rootfiles/common/libconfig b/config/rootfiles/common/libconfig index 633e1baf9..6c1e245ca 100644 --- a/config/rootfiles/common/libconfig +++ b/config/rootfiles/common/libconfig @@ -9,12 +9,12 @@ #usr/lib/libconfig++.la #usr/lib/libconfig++.so usr/lib/libconfig++.so.11 -usr/lib/libconfig++.so.11.0.2 +usr/lib/libconfig++.so.11.1.0 #usr/lib/libconfig.a #usr/lib/libconfig.la #usr/lib/libconfig.so usr/lib/libconfig.so.11 -usr/lib/libconfig.so.11.0.2 +usr/lib/libconfig.so.11.1.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 58dbd8bff..4a34a878e 100644 --- a/lfs/libconfig +++ b/lfs/libconfig @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2018 IPFire Team # +# Copyright (C) 2007-2022 IPFire Team # # # # 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.2 +VER = 1.7.3 THISAPP = libconfig-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -40,7 +40,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_BLAKE2 = 1b8bc54857feff506d5cd62312a35f0f8a123380567881bdb8241f2232c5281399e4283687a3254b8f43a92b8f7d5ff3f72ec4fd875bf1b9d5d6c7703014cc3c +$(DL_FILE)_BLAKE2 = 05d43022a937ed5ba35120170eca506051310cd7386b0a6a6c2f30186a079a02803c3d7ecb8dd49b50b5a706b282704605c250a306ada76b5241788eb1c575e6 install : $(TARGET)