From: Michael Tremer Date: Wed, 15 Jan 2025 14:57:45 +0000 (+0000) Subject: openssl: Dynamically link zlib X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c706e7601bb3be8ffbcbc4414af71110a38e4dfa;p=people%2Fmfischer%2Fipfire-2.x.git openssl: Dynamically link zlib 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 Signed-off-by: Arne Fitzenreiter --- 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 \