From 086b75c6a691f689096f1276928b710dc44cdc5d Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 12 Aug 2020 10:38:03 +0200 Subject: configure: adjust the REQUIRE_LIB_DEPS logic Fixes curl-config genreration on cygwin by making sure REQUIRE_LIB_DEPS is set to 'no' there. Assisted-by: Brian Inglis Fixes #5793 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.1