From e9ca8b1c5447d9fa177e33a12e40fbf624701625 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Diego=20Elio=20=27Flameeyes=27=20Petten=C3=B2?= Date: Sat, 31 Jan 2009 19:26:14 +0100 Subject: [PATCH] Disable portability warnings from automake. The portability warning class warns during automake calls about non-POSIX variable names and GNU make extensions. Since both happens with the current Makefile.am files and it's reasonable to expect that they wouldn't be rewritten (GNU make is a reasonable requirement), just avoid the warnings. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index c02b20e..3d9cfcd 100644 --- a/configure.ac +++ b/configure.ac @@ -30,7 +30,7 @@ AC_INIT([pulseaudio],[pa_major.pa_minor.pa_micro],[mzchyfrnhqvb (at) 0pointer (d AC_CONFIG_SRCDIR([src/daemon/main.c]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_HEADERS([config.h]) -AM_INIT_AUTOMAKE([foreign 1.10 -Wall]) +AM_INIT_AUTOMAKE([foreign 1.10 -Wall -Wno-portability]) AC_SUBST(PA_MAJOR, pa_major) AC_SUBST(PA_MINOR, pa_minor) -- 2.7.4