summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-08-12 10:38:03 +0200
committerDaniel Stenberg <daniel@haxx.se>2020-08-12 10:40:48 +0200
commit086b75c6a691f689096f1276928b710dc44cdc5d (patch)
treed1ac3bf1ad9fa164314856f2b559e5e5709acd9c
parentcb8cf9d70f6c4768c793bbfe18c27606689583cd (diff)
downloadcurl-bagder/configure-all-deplibs.tar.gz
configure: adjust the REQUIRE_LIB_DEPS logicbagder/configure-all-deplibs
Fixes curl-config genreration on cygwin by making sure REQUIRE_LIB_DEPS is set to 'no' there. Assisted-by: Brian Inglis Fixes #5793
-rwxr-xr-xconfigure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 9c738d12d..1ed4d7c80 100755
--- a/configure.ac
+++ b/configure.ac
@@ -240,7 +240,7 @@ AC_SUBST([CPPFLAG_CURL_STATICLIB])
# Determine whether all dependent libraries must be specified when linking
-if test "X$enable_shared" = "Xyes" -a "X$link_all_deplibs" = "Xno"
+if test "X$enable_shared" = "Xyes" -a "X$link_all_deplibs" != "Xyes"
then
REQUIRE_LIB_DEPS=no
else