summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorAndré Nusser <andre.nusser@googlemail.com>2017-04-21 13:17:09 +0200
committerAndré Nusser <andre.nusser@googlemail.com>2017-04-21 13:17:09 +0200
commitf75c9d28e2768d6006485dd1d628378816b0a2e1 (patch)
tree2151ac383d753824b5033ff70132055bf1663667 /configure.ac
parent3d145c656d0c8dc8892d09d7a090f5d1368f7a17 (diff)
Disable no-invalid-source-encoding warning in debug mode.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index d437b0f..722f0b1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -122,7 +122,7 @@ dnl Set up debug compile args if the user requested it
dnl ===========================
AS_IF([test "x$with_debug" == "xyes"],
[AC_MSG_WARN([*** Building with debug support!])
- CXXFLAGS="$CXXFLAGS -Wall -Werror -g $NO_UNDEFINED_PARAM"
+ CXXFLAGS="$CXXFLAGS -Wall -Werror -Wno-invalid-source-encoding -g $NO_UNDEFINED_PARAM"
HUGIN_PARM=""]
)