Use configure's new LIBCURL_LIBS variable

This commit is contained in:
Dan Fandrich 2007-02-17 17:55:19 +00:00
parent d9bf55570b
commit 2691f1efc8
2 changed files with 4 additions and 4 deletions

View File

@ -187,9 +187,9 @@ while test $# -gt 0; do
CURLLIBDIR=""
fi
if test "X@REQUIRE_LIB_DEPS@" = "Xyes"; then
echo ${CURLLIBDIR}-lcurl @LDFLAGS@ @LIBS@
echo ${CURLLIBDIR}-lcurl @LDFLAGS@ @LIBCURL_LIBS@ @LIBS@
else
echo ${CURLLIBDIR}-lcurl @LDFLAGS@
echo ${CURLLIBDIR}-lcurl @LDFLAGS@ @LIBS@
fi
;;

View File

@ -33,6 +33,6 @@ Name: libcurl
URL: http://curl.haxx.se/
Description: Library to transfer files with ftp, http, etc.
Version: @VERSION@
Libs: -L${libdir} -lcurl @LDFLAGS@
Libs.private: @LIBS@
Libs: -L${libdir} -lcurl @LDFLAGS@ @LIBS@
Libs.private: @LIBCURL_LIBS@ @LIBS@
Cflags: -I${includedir}