From 57ce68d00a352c063217eeb9a18cafc44ebcca4e Mon Sep 17 00:00:00 2001 From: Nick Bowler Date: Tue, 14 Aug 2012 20:20:52 -0400 Subject: [PATCH] Prevent gratuitous Automake failures. Automake-1.12 introduces some new warnings, as well as fixing an earlier bug that prevented -Wall from enabling all warnings. Since we were using -Werror, this causes Automake to fail. However, the warnings are gratuitous: some are warning about stuff provided by libtool (which should be fixed in libtool, not worked around in this package), and the others are warning about the non- portability of (hopefully!) portable constructs. Most are automake bug #9587 , but Automake also warns about the $(.FEATURES) trick to use order-only dependencies when available. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 6a35936..0ed842c 100644 --- a/configure.ac +++ b/configure.ac @@ -8,7 +8,7 @@ AC_PREREQ([2.68]) AC_INIT([cdecl99], [0.1], [nbowler@draconx.ca]) AC_CONFIG_HEADER([config.h]) -AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects]) +AM_INIT_AUTOMAKE([-Wall -Wno-portability foreign subdir-objects]) AM_SILENT_RULES([yes]) AC_PROG_CC_C99 -- 2.43.2