From 485c7640a17f13506ee466ebf621923cf7999d95 Mon Sep 17 00:00:00 2001 From: Brice Goglin Date: Tue, 26 Aug 2014 14:56:14 +0200 Subject: [PATCH] Don't use GNU-make specific export for global AM_CFLAGS Just define it at configure time, it's automatically set in all makefiles. Fixes #203. --- Makefile.am | 5 ----- configure.ac | 5 +++++ 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile.am b/Makefile.am index 58cbb30..ccd70e9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -8,8 +8,3 @@ dvi: pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = jansson.pc - -if GCC -# These flags are gcc specific -export AM_CFLAGS = -Wall -Wextra -Wdeclaration-after-statement -endif diff --git a/configure.ac b/configure.ac index a4e0be6..c8b5284 100644 --- a/configure.ac +++ b/configure.ac @@ -92,6 +92,11 @@ AC_DEFINE([USE_WINDOWS_CRYPTOAPI], [1], [Define to 1 if CryptGenRandom should be used for seeding the hash function]) fi +if test x$GCC = xyes; then + AM_CFLAGS="-Wall -Wextra -Wdeclaration-after-statement" +fi +AC_SUBST([AM_CFLAGS]) + AC_CONFIG_FILES([ jansson.pc Makefile