From 6348aea6a2cdc753021e5324a0dd2aecf8791f10 Mon Sep 17 00:00:00 2001 From: Neels Hofmeyr Date: Fri, 30 Sep 2016 16:25:16 +0200 Subject: build: add -Wall I noticed that unused variables are not complained about by the build. Let's add -Wall. I also noticed that the Makefile.ams include STD_DEFINES_AND_INCLUDES, which is never set in configure.ac, so using that to add -Wall to all build contexts. Change-Id: I16711cf5a1ef8bd611074b3dd486ed7a0ae9df64 --- configure.ac | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure.ac b/configure.ac index 950be230..022a7f76 100644 --- a/configure.ac +++ b/configure.ac @@ -79,6 +79,9 @@ AC_MSG_CHECKING([whether to enable VTY tests]) AC_MSG_RESULT([$enable_vty_tests]) AM_CONDITIONAL(ENABLE_VTY_TESTS, test "x$enable_vty_tests" = "xyes") +STD_DEFINES_AND_INCLUDES="-Wall" +AC_SUBST(STD_DEFINES_AND_INCLUDES) + AC_OUTPUT( src/Makefile examples/Makefile -- cgit v1.2.3