summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorDaniel Elstner <daniel.kitta@gmail.com>2009-09-19 03:34:28 +0200
committerDaniel Elstner <daniel.kitta@gmail.com>2009-09-19 03:34:28 +0200
commitfa03634b5963af18340258a67063f3a527c4e471 (patch)
treea182d576d0016bdef5d51d41aa007e81b7d8d5ae /configure.ac
parentc5383f584cc2e52cdda95a65e40f3ab62ccdc8d0 (diff)
downloadglibmm-fa03634b5963af18340258a67063f3a527c4e471.tar.gz
Support Automake silent rules
* configure.ac: Call the AM_SILENT_RULES macro if it is defined. (AM_INIT_AUTOMAKE): Add check-news option. * glib/src/Makefile.am: Prefix the M4 command line with $(AM_V_GEN) in order to support the silent rules feature of Automake.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 4 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index f9975435..fb10aa2f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -15,7 +15,8 @@
## You should have received a copy of the GNU Lesser General Public License
## along with this library. If not, see <http://www.gnu.org/licenses/>.
-AC_INIT([glibmm], [2.21.5], [http://bugzilla.gnome.org/enter_bug.cgi?product=glibmm],
+AC_INIT([glibmm], [2.21.5],
+ [http://bugzilla.gnome.org/enter_bug.cgi?product=glibmm],
[glibmm], [http://www.gtkmm.org/])
AC_PREREQ([2.59])
@@ -24,7 +25,8 @@ AC_CONFIG_AUX_DIR([build])
AC_CONFIG_MACRO_DIR([build])
AC_CONFIG_HEADERS([config.h glib/glibmmconfig.h gio/giommconfig.h])
-AM_INIT_AUTOMAKE([1.9 -Wno-portability dist-bzip2 no-define nostdinc tar-pax])
+AM_INIT_AUTOMAKE([1.9 -Wno-portability check-news dist-bzip2 no-define nostdinc tar-pax])
+m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES])
AM_MAINTAINER_MODE
AC_ARG_VAR([ACLOCAL_FLAGS], [aclocal flags, e.g. -I <macro dir>])