Message ID | 20250115145750.1540971-1-michael.tremer@ipfire.org |
---|---|
State | New |
Headers |
Return-Path: <development-bounces@lists.ipfire.org> 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 RSA-PSS (4096 bits)) (Client CN "mail01.haj.ipfire.org", Issuer "R11" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4YY8Q012x5z3xGR for <patchwork@web04.haj.ipfire.org>; Wed, 15 Jan 2025 15:03:20 +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 RSA-PSS (4096 bits) client-signature ECDSA (secp384r1)) (Client CN "mail02.haj.ipfire.org", Issuer "E5" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4YY8Px6dBVz4S9; Wed, 15 Jan 2025 15:03:17 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4YY8Px63H6z32fd; Wed, 15 Jan 2025 15:03:17 +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 (secp384r1) client-signature RSA-PSS (4096 bits)) (Client CN "mail01.haj.ipfire.org", Issuer "R11" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4YY8Pp0J8zz32nC for <development@lists.ipfire.org>; Wed, 15 Jan 2025 15:03:10 +0000 (UTC) Received: from michael.haj.ipfire.org (michael.haj.ipfire.org [172.28.1.242]) (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 client-signature ECDSA (secp384r1) client-digest SHA384) (Client CN "michael.haj.ipfire.org", Issuer "E5" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4YY8Pm4Qgpz4Md; Wed, 15 Jan 2025 15:03:08 +0000 (UTC) Received: by michael.haj.ipfire.org (Postfix, from userid 0) id 4YY8Pm3DTWzTgHm; Wed, 15 Jan 2025 15:03:08 +0000 (UTC) From: Michael Tremer <michael.tremer@ipfire.org> To: development@lists.ipfire.org Subject: [PATCH 1/6] openssl: Dynamically link zlib Date: Wed, 15 Jan 2025 14:57:45 +0000 Message-Id: <20250115145750.1540971-1-michael.tremer@ipfire.org> X-Mailer: git-send-email 2.39.5 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID-Hash: 7JCBENG5XYHTIXLY2HORJFZONJZAQHZ2 X-Message-ID-Hash: 7JCBENG5XYHTIXLY2HORJFZONJZAQHZ2 X-MailFrom: root@michael.haj.ipfire.org X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header CC: Michael Tremer <michael.tremer@ipfire.org> X-Mailman-Version: 3.3.8 Precedence: list List-Id: IPFire development talk <development.lists.ipfire.org> Archived-At: <https://lists.ipfire.org/hyperkitty/list/development@lists.ipfire.org/message/7JCBENG5XYHTIXLY2HORJFZONJZAQHZ2/> List-Archive: <https://lists.ipfire.org/hyperkitty/list/development@lists.ipfire.org/> List-Help: <mailto:development-request@lists.ipfire.org?subject=help> List-Owner: <mailto:development-owner@lists.ipfire.org> List-Post: <mailto:development@lists.ipfire.org> List-Subscribe: <mailto:development-join@lists.ipfire.org> List-Unsubscribe: <mailto:development-leave@lists.ipfire.org> |
Series |
[1/6] openssl: Dynamically link zlib
|
|
Commit Message
Michael Tremer
Jan. 15, 2025, 2:57 p.m. UTC
The former way was to open libz.so whenever it was needed. This is
however not a very good solution and we will have trouble in dependency
tracking and discover any linking problems much later.
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
---
lfs/openssl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lfs/openssl b/lfs/openssl index e14722c0c..ec8c63c54 100644 --- a/lfs/openssl +++ b/lfs/openssl @@ -41,7 +41,7 @@ CONFIGURE_OPTIONS = \ --prefix=/usr \ --openssldir=/etc/ssl \ shared \ - zlib-dynamic \ + zlib \ enable-camellia \ enable-seed \ enable-rfc3779 \