Commit 6b76b4d7 authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

Added more summary output

parent f070cec0
...@@ -96,7 +96,7 @@ if test "x${have_openssl}" = "xno"; then ...@@ -96,7 +96,7 @@ if test "x${have_openssl}" = "xno"; then
fi fi
# libxml2 (for examples/spdycat) # libxml2 (for examples/spdycat)
AM_PATH_XML2(2.7.7, [have_libxml2=yes]) AM_PATH_XML2(2.7.7, [have_libxml2=yes], [have_libxml2=no])
if test "x${have_libxml2}" = "xyes"; then if test "x${have_libxml2}" = "xyes"; then
AC_DEFINE([HAVE_LIBXML2], [1], [Define to 1 if you have `libxml2` library.]) AC_DEFINE([HAVE_LIBXML2], [1], [Define to 1 if you have `libxml2` library.])
fi fi
...@@ -166,9 +166,17 @@ AC_MSG_NOTICE([summary of build options: ...@@ -166,9 +166,17 @@ AC_MSG_NOTICE([summary of build options:
Host type: ${host} Host type: ${host}
Install prefix: ${prefix} Install prefix: ${prefix}
C compiler: ${CC} C compiler: ${CC}
CFlags: ${CFLAGS} CFLAGS: ${CFLAGS}
LDFLAGS: ${LDFLAGS}
LIBS: ${LIBS}
CPPFLAGS: ${CPPFLAGS}
C preprocessor: ${CPP}
C++ compiler: ${CXX}
CXXFLAGS: ${CXXFLAGS}
CXXCPP: ${CXXCPP}
Library types: Shared=${enable_shared}, Static=${enable_static} Library types: Shared=${enable_shared}, Static=${enable_static}
CUnit: ${have_cunit} CUnit: ${have_cunit}
OpenSSL: ${have_openssl} OpenSSL: ${have_openssl}
Libxml2: ${have_libxml2}
Examples: ${enable_examples} Examples: ${enable_examples}
]) ])
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment