From b7ceeccdbe4f021e3d370a2448a0bd1916591474 Mon Sep 17 00:00:00 2001 From: Davi Arnaut Date: Thu, 5 Nov 2009 07:48:50 -0200 Subject: Introduce support for automake-1.11 silent-rules. configure.in: Activate silent-rules if automake supports it. --- configure.in | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'configure.in') diff --git a/configure.in b/configure.in index d479088356b..dda7b268d19 100644 --- a/configure.in +++ b/configure.in @@ -13,6 +13,12 @@ AC_CANONICAL_SYSTEM AM_INIT_AUTOMAKE(mysql, 5.1.41) AM_CONFIG_HEADER([include/config.h:config.h.in]) +# Request support for automake silent-rules if available. +# Default to verbose output. One can use the configure-time +# option --enable-silent-rules or make V=1 to activate +# silent rules. +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([no])]) + PROTOCOL_VERSION=10 DOT_FRM_VERSION=6 # See the libtool docs for information on how to do shared lib versions. -- cgit v1.2.1 From 64f097dc8021ac810ac1fcaba3d341bb610e8204 Mon Sep 17 00:00:00 2001 From: Davi Arnaut Date: Sat, 21 Nov 2009 10:11:45 -0200 Subject: Post-merge fixes: fix typo and remove unused variables. --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.in') diff --git a/configure.in b/configure.in index a32956858f4..79138561dcb 100644 --- a/configure.in +++ b/configure.in @@ -15,7 +15,7 @@ AM_CONFIG_HEADER([include/config.h:config.h.in]) # Request support for automake silent-rules if available. # Default to verbose output. One can use the configure-time -# option --enable-silent-rules or make V=1 to activate +# option --enable-silent-rules or make V=0 to activate # silent rules. m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([no])]) -- cgit v1.2.1