From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer 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> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============4911878924146767248==" List-Id: --===============4911878924146767248== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit 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 --- 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 \ -- 2.39.5 --===============4911878924146767248==--