Browse Source

Use configure's new LIBCURL_LIBS variable

darwin-pinnedpubkey
Dan Fandrich 16 years ago
parent
commit
2691f1efc8
  1. 4
      curl-config.in
  2. 4
      libcurl.pc.in

4
curl-config.in

@ -187,9 +187,9 @@ while test $# -gt 0; do @@ -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
;;

4
libcurl.pc.in

@ -33,6 +33,6 @@ Name: libcurl @@ -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}

Loading…
Cancel
Save