From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4cQXXR4mssz36V9 for ; Mon, 15 Sep 2025 17:46:47 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [IPv6:2001:678:b28::25]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R13" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4cQXXL38JBz332r for ; Mon, 15 Sep 2025 17:46:42 +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 RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4cQXXK0qzmz3wr; Mon, 15 Sep 2025 17:46:41 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1757958401; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=ifwu+hCEMJ7LGuvtdDFWhDGBDFWkqdhlyOf4NPsT3/o=; b=rDlz4yoCVNMC7zTgPEWDd1myhJ4bm4JgHQ798oo6r4UvwNB7oOImVgX3t4aVbFwIo4fOaS n5w17JgBOua+NXBQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1757958401; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=ifwu+hCEMJ7LGuvtdDFWhDGBDFWkqdhlyOf4NPsT3/o=; b=QyYH4/YqPzD+7IgE+jj5k0VSSkKGmpOY3b+qfH0VpOIzYbcHUlm5qzvhZojXGL4XWTkff1 EPtqaMHJ5gwmHJ7xhPD/vWuNdpq+42ZRhnllUjW1M+nCo74WulC5qNAeSAU/ZvWQMaRQP7 yweY004c82hLwXJEoV3CnINXqw/mUAiHRtFEnytwXX7TUxSjulKEVysfEf3HswjzUjqLzK USN9Ffn/PFTs+3oKTFF3YkIi9Hofyz+w9NXIhwXD37u8AKeyuj+hzF9iFUwZu6pZhhqqeD LwfU0a9zMFdSPhHd8vbcIXNE3KF+sODtnPS/wVnF2taiHkjj1bHt/xV9TzBj3g== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH] libffi: Update to version 3.5.2 Date: Mon, 15 Sep 2025 19:46:26 +0200 Message-ID: <20250915174630.2688676-11-adolf.belka@ipfire.org> In-Reply-To: <20250915174630.2688676-1-adolf.belka@ipfire.org> References: <20250915174630.2688676-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit - Update from version 3.5.1 to 3.5.2 - Update of rootfile not required - Changelog 3.5.2 fix: enable FFI_MMAP_EXEC_WRIT for DragonFly BSD by @liweitianux in #930 Emscripten: Add wasm64 target by @ktock in #927 fix: Ensure trampoline file descriptors are closed on exec. Signed-off-by: Adolf Belka --- lfs/libffi | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lfs/libffi b/lfs/libffi index 545d45c9d..2217a8ea7 100644 --- a/lfs/libffi +++ b/lfs/libffi @@ -24,7 +24,7 @@ include Config -VER = 3.5.1 +VER = 3.5.2 THISAPP = libffi-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -40,7 +40,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_BLAKE2 = eaeb04beeb4ab6e0ef5652175d5c9d29a18b6f1edbf05db819a3a6ac9c8ed47de32c54fca4c3a9a476283c0771650d5a577e7868f16c671ee46e25db27369066 +$(DL_FILE)_BLAKE2 = 35ce590926bcdd2556c30c94bb0fef3f0cfe8f32e809ffad00eb0bc7a8ba1ba40da844b108069c87e86bff278221cc42dc7c7aacd02a7b7bc408ea054085398c 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) $(UPDATE_AUTOMAKE) - 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) -- 2.51.0