diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2023-12-22 20:38:28 +0100 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2023-12-30 01:37:14 +0100 |
commit | 116f5030b6d00d6e72a32b2b651df97bdf8d5375 (patch) | |
tree | 39b1b8ca2e2c59238d688b9497f0f20bdc658e97 /configure.ac | |
parent | 70b82d56be48b2a1ace342dcee2220ee02396f7b (diff) |
Add configure summary at the end
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 28d2c9e3..f0a78dfb 100644 --- a/configure.ac +++ b/configure.ac @@ -243,6 +243,7 @@ dnl ---------------- dnl Test for libjpeg dnl ---------------- dnl +jpeg_ok=no if test "x$enable_jpeg" = "xyes"; then AC_CHECK_HEADER(jpeglib.h, jpeg_ok=yes, jpeg_ok=no) @@ -291,6 +292,7 @@ dnl --------------- dnl Test for libpng dnl --------------- dnl +png_ok="no" if test "x$enable_png" = "xyes"; then AC_MSG_CHECKING([for libpng-config]) @@ -658,3 +660,21 @@ AC_CONFIG_FILES([ ]) AC_OUTPUT + +_AS_ECHO([]) +_AS_ECHO([Configuration summary:]) +_AS_ECHO([]) +_AS_ECHO([ CXX : ${CXX}]) +_AS_ECHO([ CXXFLAGS: ${CXXFLAGS}]) +_AS_ECHO([]) +_AS_ECHO([ TLS enabled: ${tls_ok}]) +_AS_ECHO([ TLS library: ${tls_impl}]) +_AS_ECHO([ TLS flags : ${LIBSSL_LIBS}]) +_AS_ECHO([]) +_AS_ECHO([ Cookies enabled: ${enable_cookies}]) +_AS_ECHO([ XEmbed enabled : ${enable_xembed}]) +_AS_ECHO([ RTFL enabled : ${enable_rtfl}]) +_AS_ECHO([ JPEG enabled : ${jpeg_ok}]) +_AS_ECHO([ PNG enabled : ${png_ok}]) +_AS_ECHO([ GIF enabled : ${enable_gif}]) +_AS_ECHO([]) |