From 06d0f550425b5c34f14e07a09037b97bd8ed3c7e Mon Sep 17 00:00:00 2001 From: Ruben Kerkhof Date: Sun, 28 Dec 2014 12:20:45 +0100 Subject: [PATCH] Show a few build options at end of ./configure configure: configure: Configuration summary configure: ===================== configure: configure: Modules: bind gmysql geo random configure: Dynamic Modules: pipe configure: configure: CC: gcc configure: CXX: g++ configure: LD: /usr/bin/ld -m elf_x86_64 configure: CFLAGS: -fPIE -DPIE -D_FORTIFY_SOURCE=2 --param ssp-buffer-size=4 -fstack-protector -g -O2 configure: CPPFLAGS: configure: CXXFLAGS: -fPIE -DPIE -D_FORTIFY_SOURCE=2 --param ssp-buffer-size=4 -fstack-protector -Wall -g -O2 configure: LDFLAGS: -Wl,-z -Wl,relro -Wl,-z -Wl,now -L/usr/lib64 configure: configure: SQLite3 support: no configure: Lua support: yes --- configure.ac | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/configure.ac b/configure.ac index 19cda8696..aa12e5d9b 100644 --- a/configure.ac +++ b/configure.ac @@ -362,3 +362,21 @@ AC_CONFIG_FILES([ ]) AC_OUTPUT +AC_MSG_NOTICE([]) +AC_MSG_NOTICE([Configuration summary]) +AC_MSG_NOTICE([=====================]) +AC_MSG_NOTICE([]) +AC_MSG_NOTICE([Modules: $modules]) +AC_MSG_NOTICE([Dynamic Modules: $dynmodules]) +AC_MSG_NOTICE([]) +AC_MSG_NOTICE([CC: $CC]) +AC_MSG_NOTICE([CXX: $CXX]) +AC_MSG_NOTICE([LD: $LD]) +AC_MSG_NOTICE([CFLAGS: $CFLAGS]) +AC_MSG_NOTICE([CPPFLAGS: $CPPFLAGS]) +AC_MSG_NOTICE([CXXFLAGS: $CXXFLAGS]) +AC_MSG_NOTICE([LDFLAGS: $LDFLAGS]) +AC_MSG_NOTICE([]) +AC_MSG_NOTICE([SQLite3 support: $with_sqlite3]) +AC_MSG_NOTICE([Lua support: $with_lua]) +AC_MSG_NOTICE([]) -- 2.49.0