Commit 2691f1ef authored by Dan Fandrich's avatar Dan Fandrich
Browse files

Use configure's new LIBCURL_LIBS variable

parent d9bf5557
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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
	;;

+2 −2
Original line number Diff line number Diff line
@@ -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}