From 583f66ec4ebb9c8c8c22d7e80bc0c66763596dee Mon Sep 17 00:00:00 2001 From: Doug Torrance Date: Mon, 22 Jun 2020 11:04:01 -0400 Subject: [PATCH] Turn off automake's warning messages about using GNU make extensions We've been using addsuffix in WindowMaker/Makefile.am and may use others in the future. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 64c9dd65..d8a4c354 100644 --- a/configure.ac +++ b/configure.ac @@ -41,7 +41,7 @@ AC_CONFIG_HEADERS([config.h]) dnl We need the EXTRA_xxx_DEPENDENCIES keyword in Makefiles which have been dnl introduced in the version 1.11.3; because the 1.12 was realeased shortly dnl after, we just ask for it -AM_INIT_AUTOMAKE([1.12 silent-rules]) +AM_INIT_AUTOMAKE([1.12 silent-rules -Wno-portability]) dnl Reference file used by 'configure' to make sure the path to sources is valid AC_CONFIG_SRCDIR([src/WindowMaker.h]) -- 2.11.4.GIT