[gtkmm-documentation] Build: Fix silent builds



commit 75cd855028a74cddb7f6cfad611d582734200a4e
Author: Kjell Ahlstedt <kjell ahlstedt bredband net>
Date:   Tue Jul 19 09:39:13 2016 +0200

    Build: Fix silent builds
    
    * configure.ac: Pass yes to AM_SILENT_RULES, thus enabling silent builds.
    Replace MM_AX_CXX_COMPILE_STDCXX_11 by MM_AX_CXX_COMPILE_STDCXX (not necessary
    for silent builds). Bug #768797

 configure.ac |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index a51df99..c2f947a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -11,14 +11,16 @@ AC_CONFIG_MACRO_DIR([build])
 AC_CONFIG_HEADERS([build/config.h])
 
 AM_INIT_AUTOMAKE([1.9 -Wno-portability check-news dist-bzip2 no-define nostdinc tar-ustar])
-m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES])
+# Support silent build rules.
+# Disable by either passing --disable-silent-rules to configure or passing V=1 to make.
+m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
 AM_MAINTAINER_MODE
 AC_ARG_VAR([ACLOCAL_FLAGS], [aclocal flags, e.g. -I <macro dir>])
 
-MM_PREREQ([0.9.8])
+MM_PREREQ([0.9.10])
 
 AC_PROG_CXX
-MM_AX_CXX_COMPILE_STDCXX_11([noext],[mandatory])
+MM_AX_CXX_COMPILE_STDCXX([11], [noext], [mandatory])
 
 AC_PATH_PROG([PERL], [perl], [perl])
 AC_PROG_SED


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]