From 94aed3ada618ab98ff620997f77e3f337d2e0704 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Javier=20Jard=C3=B3n?= Date: Mon, 24 Aug 2009 01:01:42 +0200 Subject: [PATCH] Support silent build rules with automake 1.11 Support silent build rules, requires at least automake-1.11. Disable by either passing --disable-silent-rules to configure or passing V=1 to make. https://bugs.maemo.org/show_bug.cgi?id=4973 --- configure.ac | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configure.ac b/configure.ac index 018d022..5fb619a 100644 --- a/configure.ac +++ b/configure.ac @@ -38,6 +38,11 @@ m4_define([modest_api_version], [modest_api_major_version.modest_api_minor_versi AC_CONFIG_SRCDIR(src/modest-main.c) AM_INIT_AUTOMAKE([dist-bzip2]) +# Support silent build rules, requires at least automake-1.11. Disable +# by either passing --disable-silent-rules to configure or passing V=1 +# to make +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) + MODEST_API_MAJOR_VERSION=modest_api_major_version MODEST_API_MINOR_VERSION=modest_api_minor_version MODEST_API_MICRO_VERSION=modest_api_micro_version -- 1.7.9.5