[cairo] [PATCH 1/2] build: Suppress verbose compile lines
Chris Wilson
chris at chris-wilson.co.uk
Fri Aug 28 02:12:24 PDT 2009
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.
---
configure.ac | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/configure.ac b/configure.ac
index e6c5e8e..ae53fab 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 at 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
--
1.6.3.3
More information about the cairo
mailing list