From c89b1129d192e20f2be0409b46baaf4da1185894 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Sun, 15 Apr 2018 08:23:50 +0200 Subject: [PATCH] configure: Remove optimize option for preprocessor It is only used by the compiler. Signed-off-by: Stefan Weil --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 3825c404b4..0c29c17b86 100644 --- a/configure.ac +++ b/configure.ac @@ -296,10 +296,10 @@ AC_ARG_ENABLE([debug], AC_MSG_RESULT([$debug]) if test x"$debug" = x"yes"; then AM_CXXFLAGS="$AM_CXXFLAGS -g -Wall -O0 -DDEBUG" - AM_CPPFLAGS="$AM_CPPFLAGS -g -Wall -O0 -DDEBUG" + AM_CPPFLAGS="$AM_CPPFLAGS -g -Wall -DDEBUG" else AM_CXXFLAGS="$AM_CXXFLAGS -O2 -DNDEBUG" - AM_CPPFLAGS="$AM_CPPFLAGS -O2 -DNDEBUG" + AM_CPPFLAGS="$AM_CPPFLAGS -DNDEBUG" fi #localedir='${prefix}/share/locale'