From: Chris Wilson Date: Thu, 27 Aug 2009 08:19:14 +0000 (+0100) Subject: build: Suppress verbose compile lines X-Git-Tag: 1.0_branch~777 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cda0ee5165812b86a052ceb01830a1d42d02a03b;p=profile%2Fivi%2Fpixman.git build: Suppress verbose compile lines Compile warnings are being lost in the sea of noise. Automake-1.11 finally introduced AM_SILENT_RULES to suppress the echoing of the compile line for every object. Enable this to bring sanity to the pixman build. --- diff --git a/configure.ac b/configure.ac index 65dea52..f09006f 100644 --- a/configure.ac +++ b/configure.ac @@ -61,6 +61,9 @@ m4_define([pixman_version],[pixman_major.pixman_minor.pixman_micro]) AC_INIT(pixman, pixman_version, "sandmann@daimi.au.dk", pixman) AM_INIT_AUTOMAKE([dist-bzip2]) +# Suppress verbose compile lines +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) + AM_CONFIG_HEADER(config.h) AC_CANONICAL_HOST