From: Ruben Kerkhof Date: Sun, 28 Dec 2014 11:20:45 +0000 (+0100) Subject: Show a few build options at end of ./configure X-Git-Tag: rec-3.7.0-rc1~67^2~21^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F2017%2Fhead;p=thirdparty%2Fpdns.git 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 --- diff --git a/configure.ac b/configure.ac index 19cda86960..aa12e5d9ba 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([])