From 50b5cdac871e9af45b10cf8a548c1d1db290dfeb Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Tue, 24 Jul 2018 12:38:26 +0200 Subject: [PATCH 2/2] Remove -Werror from --enable-debugging (fixes #24771) GCC 8 has better warnings and it breaks the build on platform already using it and wanting debugging symbols. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index b06bdef4..c2520e37 100644 --- a/configure.ac +++ b/configure.ac @@ -700,7 +700,7 @@ AC_ARG_ENABLE(debugging, [ --enable-debugging enable debuging optimizati if test "z$enable_debugging" = "zyes" ; then enable_debugging=yes LASSO_DEFINES="$LASSO_DEFINES -DLASSO_DEBUG" - CFLAGS="$CFLAGS -O0 -g -Wall -Wextra -Werror" + CFLAGS="$CFLAGS -O0 -g -Wall -Wextra" else enable_debugging=no fi -- 2.18.0