mirror of
https://github.com/curl/curl.git
synced 2026-04-14 18:21:40 +03:00
Added '--configure' option to curl-config to display original configure arguments when curl was built
This commit is contained in:
parent
1cbc93fb54
commit
f7f76e17c3
5 changed files with 17 additions and 0 deletions
|
|
@ -37,6 +37,7 @@ Available values for OPTION include:
|
|||
--cc compiler
|
||||
--cflags pre-processor and compiler flags
|
||||
--checkfor [version] check for (lib)curl of the specified version
|
||||
--configure the arguments given to configure when building curl
|
||||
--features newline separated list of enabled features
|
||||
--help display this help and exit
|
||||
--libs library linking information
|
||||
|
|
@ -146,6 +147,10 @@ while test $# -gt 0; do
|
|||
echo @libdir@/libcurl.@libext@ @LDFLAGS@ @LIBCURL_LIBS@ @LIBS@
|
||||
;;
|
||||
|
||||
--configure)
|
||||
echo @CONFIGURE_OPTIONS@
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "unknown option: $1"
|
||||
usage 1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue