]> granicus.if.org Git - pdns/commitdiff
Show a few build options at end of ./configure
authorRuben Kerkhof <ruben@rubenkerkhof.com>
Sun, 28 Dec 2014 11:20:45 +0000 (12:20 +0100)
committerRuben Kerkhof <ruben@rubenkerkhof.com>
Sun, 28 Dec 2014 11:22:03 +0000 (12:22 +0100)
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

index 19cda86960507ebef776fc4210b9c559fe326b15..aa12e5d9ba820d5f9ac9c3bec12b5a3ce504b372 100644 (file)
@@ -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([])