summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoachim Nilsson <troglobit@gmail.com>2019-10-06 16:45:39 +0200
committerJoachim Nilsson <troglobit@gmail.com>2019-10-06 16:45:39 +0200
commit75999008a74f42d56612122263144765b1bc7237 (patch)
treea9c2ae4c0eb2232e43b7860ef89222ea1e80ebfe
parente169d61c7cfbc045fd7f58a0cead965b35bed800 (diff)
downloadlibnet-75999008a74f42d56612122263144765b1bc7237.tar.gz
configure: Minor, clean up formatting of configuration summary
Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
-rw-r--r--configure.ac35
1 files changed, 19 insertions, 16 deletions
diff --git a/configure.ac b/configure.ac
index 5793d47..37d8635 100644
--- a/configure.ac
+++ b/configure.ac
@@ -372,8 +372,7 @@ AM_CONDITIONAL([WIN32], [test "${WIN32}" = "yes"])
AC_OUTPUT
AC_MSG_RESULT([
--=-=-=-=-=-=-=-=-= $PACKAGE Configuration Complete =-=-=-=-=-=-=-=-=-=-
-
+-=-=-=-=-=-=-=-=-=-= $PACKAGE Configuration Complete =-=-=-=-=-=-=-=-=-=-
Configuration Summary
@@ -406,20 +405,24 @@ Features and Examples
Build Sample Programs: ........ ${enable_samples}
Rebuild docs: ................. ${rebuild_docs}
-To override options, see ./configure --help
+To override options:
-To disable silent building and print the full command line of every stage, run "make V=1"
-])
-if test "$WIN32" = "yes" ; then
-AC_MSG_WARN([To compile shared libraries on MinGW, use the WinPcap libraries in $(pwd)/win32/.
-GCC is NOT able to produce x64 compatible images using the official WinPcap Developer Pack.
-See README.win32 for more information.
+ $0 --help
-Report bugs to ${PACKAGE_BUGREPORT}])
-elif test "$rebuild_docs" = "yes" ; then
-AC_MSG_RESULT([To build just the Documentation run "make doc"
+Report bugs to ${PACKAGE_BUGREPORT}
-Report bugs to ${PACKAGE_BUGREPORT}])
-else
-AC_MSG_RESULT([Report bugs to ${PACKAGE_BUGREPORT}])
-fi
+-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
+To disable silent build and print the full command line of every stage:
+
+ make V=1
+])
+AS_IF([test "$WIN32" = "yes"], [AC_MSG_RESULT(
+[To compile shared libraries on MinGW use the bundled WinPcap libraries
+in ./win32/. GCC can NOT produce x64 compatible images with official
+WinPcap Developer Pack. See README.win32 for more info.
+])])
+AS_IF([test "$rebuild_docs" = "yes"], [AC_MSG_RESULT(
+[To build/update the documentation:
+
+ make doc
+])])