From 6505983aace2ef6b7cc1433ef6aad4a120f19ca7 Mon Sep 17 00:00:00 2001 From: Nick Bowler Date: Tue, 12 Mar 2013 18:22:56 -0400 Subject: [PATCH] build: Fixes for newer tools. Some trivial updates to fix the build with latest Automake. Drop support for Automake versions < 1.11. --- .gitignore | 1 + configure.ac | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 78d219c..b372299 100644 --- a/.gitignore +++ b/.gitignore @@ -33,6 +33,7 @@ lib missing depcomp +compile install-sh stamp-h1 diff --git a/configure.ac b/configure.ac index d798674..0403ca1 100644 --- a/configure.ac +++ b/configure.ac @@ -10,10 +10,11 @@ AC_CONFIG_SRCDIR([src/lbx.c]) AC_CONFIG_HEADER([config.h]) AC_CONFIG_MACRO_DIR([m4]) -AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects]) -m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) +AM_INIT_AUTOMAKE([-Wall -Wno-portability foreign subdir-objects]) +AM_SILENT_RULES([yes]) AC_PROG_CC_C99 +AM_PROG_CC_C_O gl_EARLY AC_HEADER_ASSERT -- 2.43.0