diff options
author | Daniel Stenberg <daniel@haxx.se> | 2018-11-01 08:17:28 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-11-01 11:58:06 +0100 |
commit | 2dac26063a0d1ba15f9d5eeb8e35f9f41374a351 (patch) | |
tree | 23258326a96a7ad3f90487a64a1035cd99aa6b60 /configure.ac | |
parent | 29db6bbf90d4eda95217fbc116026b4e699bf647 (diff) | |
download | curl-2dac26063a0d1ba15f9d5eeb8e35f9f41374a351.tar.gz |
configure: show CFLAGS, LDFLAGS etc in summary
To make it easier to understand other people's and remote builds etc.
Closes #3207
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index bbbf3af17..68b464e66 100755 --- a/configure.ac +++ b/configure.ac @@ -4300,10 +4300,15 @@ XC_AMEND_DISTCLEAN([lib src tests/unit tests/server tests/libtest docs/examples] AC_MSG_NOTICE([Configured to build curl/libcurl: - curl version: ${CURLVERSION} Host setup: ${host} Install prefix: ${prefix} Compiler: ${CC} + CFLAGS: ${CFLAGS} + CPPFLAGS: ${CPPFLAGS} + LDFLAGS: ${LDFLAGS} + LIBS: ${LIBS} + + curl version: ${CURLVERSION} SSL support: ${curl_ssl_msg} SSH support: ${curl_ssh_msg} zlib support: ${curl_zlib_msg} |