about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2009-08-16 16:08:21 +0200
committerAlexander Barton <alex@barton.de>2009-08-16 16:08:21 +0200
commit5debe205097ed6c7b17e15a1798a32a7393b26fa (patch)
treeabd32bc46d38efd916b769a01064ed83f1dac4d3
parenta7eef6666bf534c6cb3c395db429fb80bb8bee19 (diff)
downloadngircd-5debe205097ed6c7b17e15a1798a32a7393b26fa.tar.gz
ngircd-5debe205097ed6c7b17e15a1798a32a7393b26fa.zip
Use AM_SILENT_RULES([yes]), if available
Starting with GNU automake 1.11 "AM_SILENT_RULES([yes])" is available to
make the build process less verbose ("Linux 2.6 style") which helps to
spot warning and error messages.

So we use it if it is available.
-rw-r--r--configure.in2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 6738dd68..d10f6ec6 100644
--- a/configure.in
+++ b/configure.in
@@ -18,6 +18,8 @@ AC_CANONICAL_TARGET
 AM_INIT_AUTOMAKE(1.6)
 AM_CONFIG_HEADER(src/config.h)
 
+m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
+
 # -- Templates for config.h --
 
 AH_TEMPLATE([DEBUG], [Define if debug-mode should be enabled])