From patchwork Sun Sep 17 14:29:32 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 7200 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 (secp384r1) client-signature ECDSA (secp384r1)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4RpVgZ16tRz3wtG for ; Sun, 17 Sep 2023 14:29:46 +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 (secp384r1) client-signature ECDSA (secp384r1)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4RpVgQ1G0lz1XP; Sun, 17 Sep 2023 14:29:38 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4RpVgP4BNFz2xKH; Sun, 17 Sep 2023 14:29:37 +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) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4RpVgN09bwz2xKH for ; Sun, 17 Sep 2023 14:29:36 +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 (secp384r1) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4RpVgM0LNyzdj; Sun, 17 Sep 2023 14:29:34 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1694960975; 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; bh=cfSyCBTHCeDA5RfZXA7w2DeSeLmrE/IUr9gI6W9kHFA=; b=6mSiLE2JV7wPI3a7MH1sl1x55yxyIuS0kdERUX5bmIN/2/GUhvMztBjoEdC1ukI2rWKOoe DhZBfCWuptlBUSDw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1694960975; 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; bh=cfSyCBTHCeDA5RfZXA7w2DeSeLmrE/IUr9gI6W9kHFA=; b=ukV/+R835PT2synwGtyMVYPkhpxxD46lee37mlfPyW/ZAlG30I8LP6W4fTUjLINRgawqPy q10yzArHN/pJ6Zq1IrgXC/OgXHoSGi7jcM+mUWEGJs523U2i9XBlb3NYZfxT0qrj48RG9n TUkwSC3Ic4i9jWb/PLW2mNnEW/oQrOdJN8+LSkydA5g7kJhlm/3EhGw6PbBt2FmsLre0Dd cjDU33nHoYt4t46khK/5YGMoIqCR+NydyHOHCkdh+svJ98c2FZfoGoCdHFbPiM4mos1txK +Wd81oxBji/k7Rz5oGJGrEdvXQC0i+fOZ5HffU3LrO6OmVJ2S/eGml9T533/Ow== From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH] apr: Update to version 1.7.4 Date: Sun, 17 Sep 2023 16:29:32 +0200 Message-ID: <20230917142932.124826-1-adolf.belka@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" - IPFire3.x - Update from version 1.7.2 to 1.7.4 - Changelog 1.7.4 *) Fix a regression where writing to a file opened with both APR_FOPEN_APPEND and APR_FOPEN_BUFFERED did not properly append the data on Windows. (This regression was introduced in APR 1.7.3) [Evgeny Kotkov] 1.7.3 *) apr-1-config: Fix crosscompiling detection in apr-1-config. PR 66510 [Ruediger Pluem] *) configure: Add --enable-sysv-shm to use SysV shared memory (shmget) if available. [Ruediger Pluem] *) apr_socket_sendfile: Use WSAIoctl() to get TransmitFile function pointer on Windows. [Ivan Zhakov] *) apr_dir_read: Do not request short file names on Windows 7 and later. [Ivan Zhakov] *) apr_file_gets: Optimize for buffered files on Windows. [Evgeny Kotkov] *) Fix a deadlock when writing to locked files opened with APR_FOPEN_APPEND on Windows. PR 50058. [Evgeny Kotkov] *) Don't seek to the end when opening files with APR_FOPEN_APPEND on Windows. [Evgeny Kotkov] *) apr_file_write: Optimize large writes to buffered files on Windows. [Evgeny Kotkov] *) apr_file_read: Optimize large reads from buffered files on Windows. [Evgeny Kotkov] Signed-off-by: Adolf Belka --- apr/apr.nm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apr/apr.nm b/apr/apr.nm index a2709ac35..622356d37 100644 --- a/apr/apr.nm +++ b/apr/apr.nm @@ -4,7 +4,7 @@ ############################################################################### name = apr -version = 1.7.2 +version = 1.7.4 release = 1 groups = System/Libraries @@ -26,7 +26,8 @@ build end configure_options += \ - --with-devrandom=/dev/urandom + --disable-static \ + --with-installbuilddir=/usr/share/apr-1/build end packages