From 97145934f0cf875444722181f5b97f53eb0f92ce Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Tue, 29 Sep 2009 23:48:20 +0200 Subject: [PATCH] configure.in: Add m4 check for new AM_SILENT_RULES Kbuild like output for automake (>=1.11). It's no hard dependency as it needs the newest automake, but enable it by default if it is available. To turn it off you can either use --disable-silent-rules at configure time or make V=0 at compile time. Signed-off-by: Stefan Schmidt Signed-off-by: Takashi Iwai --- configure.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure.in b/configure.in index 3cd6366b..a455de1c 100644 --- a/configure.in +++ b/configure.in @@ -17,6 +17,9 @@ eval LIBTOOL_VERSION_INFO="2:0:0" dnl ************************************************* AM_CONDITIONAL(INSTALL_M4, test -n "${ACLOCAL}") +# Test for new silent rules and enable only if they are available +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) + AC_PREFIX_DEFAULT(/usr) dnl Checks for programs. -- 2.47.1