Browse Source

Added the --static-libs option to curl-config

darwin-pinnedpubkey
Dan Fandrich 16 years ago
parent
commit
faaaf62655
  1. 3
      CHANGES
  2. 1
      RELEASE-NOTES
  3. 1
      configure.ac
  4. 7
      curl-config.in
  5. 5
      docs/curl-config.1

3
CHANGES

@ -6,6 +6,9 @@ @@ -6,6 +6,9 @@
Changelog
Dan F (25 October 2007)
- Added the --static-libs option to curl-config
Daniel S (25 October 2007)
- Made libcurl built with NSS possible to ignore the peer verification.
Previously it would fail if the ca bundle wasn't present, even if the code

1
RELEASE-NOTES

@ -21,6 +21,7 @@ This release includes the following changes: @@ -21,6 +21,7 @@ This release includes the following changes:
o added CURLOPT_OPENSOCKETFUNCTION and CURLOPT_OPENSOCKETDATA
o CULROPT_COOKIELIST supports "FLUSH"
o added CURLOPT_COPYPOSTFIELDS
o added --static-libs to curl-config
This release includes the following bugfixes:

1
configure.ac

@ -55,6 +55,7 @@ AC_SUBST(AR) @@ -55,6 +55,7 @@ AC_SUBST(AR)
if test "x$AR" = "xar-was-not-found-by-configure"; then
AC_MSG_WARN([ar was not found, this may ruin your chances to build fine])
fi
AC_SUBST(libext)
dnl figure out the libcurl version
VERSION=`$SED -ne 's/^#define LIBCURL_VERSION "\(.*\)"/\1/p' ${srcdir}/include/curl/curlver.h`

7
curl-config.in

@ -41,10 +41,11 @@ Available values for OPTION include: @@ -41,10 +41,11 @@ Available values for OPTION include:
--cflags pre-processor and compiler flags
--checkfor [version] check for (lib)curl of the specified version
--features newline separated list of enabled features
--protocols newline separated list of enabled protocols
--help display this help and exit
--libs library linking information
--prefix curl install prefix
--protocols newline separated list of enabled protocols
--static-libs static libcurl library linking information
--version output version information
--vernum output the version information as a number (hexadecimal)
EOF
@ -200,6 +201,10 @@ while test $# -gt 0; do @@ -200,6 +201,10 @@ while test $# -gt 0; do
fi
;;
--static-libs)
echo @libdir@/libcurl.@libext@ @LDFLAGS@ @LIBCURL_LIBS@ @LIBS@
;;
*)
echo "unknown option: $1"
usage 1

5
docs/curl-config.1

@ -21,7 +21,7 @@ @@ -21,7 +21,7 @@
.\" * $Id$
.\" **************************************************************************
.\"
.TH curl-config 1 "25 Jan 2004" "Curl 7.15.4" "curl-config manual"
.TH curl-config 1 "25 Oct 2007" "Curl 7.17.1" "curl-config manual"
.SH NAME
curl-config \- Get information about a libcurl installation
.SH SYNOPSIS
@ -62,6 +62,9 @@ the time of writing, this list may include HTTP, HTTPS, FTP, FTPS, FILE, @@ -62,6 +62,9 @@ the time of writing, this list may include HTTP, HTTPS, FTP, FTPS, FILE,
TELNET, LDAP, DICT. Do not assume any particular order. The protocols will
be listed using uppercase and are separated by newlines. There may be none,
one or several protocols in the list. (Added in 7.13.0)
.IP "--static-libs"
Shows the complete set of libs and other linker options you will need in order
to link your application with libcurl statically.
.IP "--version"
Outputs version information about the installed libcurl.
.IP "--vernum"

Loading…
Cancel
Save