From 68ae05e76029ad8867e114ffa6322022b7a9f184 Mon Sep 17 00:00:00 2001 Message-Id: <68ae05e76029ad8867e114ffa6322022b7a9f184.1717967454.git.mdw@distorted.org.uk> From: Mark Wooding Date: Thu, 21 Dec 2017 19:03:26 +0100 Subject: [PATCH] libsasl: assume -lc, -lcrypto work so that shared objects libplain, libanonomous and more are aways built. Organization: Straylight/Edgeware From: Henrik Grimler Should make the check introduced in commit https://github.com/termux/termux-packages/commit/5519960 unnecessary. --- packages/libsasl/config-ltconfig.patch | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/packages/libsasl/config-ltconfig.patch b/packages/libsasl/config-ltconfig.patch index bc0c1261..ccf3216f 100644 --- a/packages/libsasl/config-ltconfig.patch +++ b/packages/libsasl/config-ltconfig.patch @@ -1,7 +1,6 @@ -diff -u -r ../cyrus-sasl-2.1.26/config/ltconfig ./config/ltconfig ---- ../cyrus-sasl-2.1.26/config/ltconfig 2012-10-12 10:05:48.000000000 -0400 -+++ ./config/ltconfig 2015-12-15 06:27:44.916679421 -0500 -@@ -1237,9 +1240,9 @@ +--- ./config/ltconfig 2012-10-12 14:05:48.000000000 +0000 ++++ ../ltconfig 2017-12-21 13:49:35.243749635 +0000 +@@ -1237,8 +1237,8 @@ *) if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then @@ -12,13 +11,13 @@ diff -u -r ../cyrus-sasl-2.1.26/config/ltconfig ./config/ltconfig else ld_shlibs=no fi - ;; -@@ -1956,7 +1962,7 @@ +@@ -1956,7 +1956,8 @@ shlibpath_var=DYLD_LIBRARY_PATH ;; -gnu*) +gnu* | linux-android*) ++ deplibs_check_method=pass_all version_type=linux need_lib_prefix=no need_version=no -- [mdw]