Skip to content

Commit 97aca09

Browse files
committed
curl-config: ignore REQUIRE_LIB_DEPS in --libs output
Fixes a curl-config issue on cygwin by making sure REQUIRE_LIB_DEPS is not considered for the --libs output. Reported-by: ramsay-jones on github Assisted-by: Brian Inglis and Ken Brown Fixes curl#5793 Closes curl#5808
1 parent 010fb98 commit 97aca09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

curl-config.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ while test $# -gt 0; do
160160
else
161161
CURLLIBDIR=""
162162
fi
163-
if test "X@ENABLE_SHARED@" = "Xno" -o "X@REQUIRE_LIB_DEPS@" = "Xyes"; then
163+
if test "X@ENABLE_SHARED@" = "Xno"; then
164164
echo ${CURLLIBDIR}-lcurl @LIBCURL_LIBS@
165165
else
166166
echo ${CURLLIBDIR}-lcurl

0 commit comments

Comments
 (0)