[shibboleth-sp2] 03/23: Remove strict overflow warning for older compilers.
Ferenc Wágner
wferi at moszumanska.debian.org
Wed Feb 21 10:57:06 UTC 2018
This is an automated email from the git hooks/post-receive script.
wferi pushed a commit to branch master
in repository shibboleth-sp2.
commit 94efcbc3c8778b9dd29e9fa32fcb4f014e1b5153
Author: Scott Cantor <cantor.2 at osu.edu>
Date: Mon Nov 27 16:31:10 2017 -0500
Remove strict overflow warning for older compilers.
---
configure.ac | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/configure.ac b/configure.ac
index f276e7b..9ea8ee0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -24,11 +24,11 @@ AC_ARG_ENABLE(debug,
enable_debug=$enableval, enable_debug=no)
if test "$enable_debug" = "yes" ; then
- GCC_CFLAGS="$CFLAGS -g -D_DEBUG -Wstrict-overflow=5"
- GCC_CXXFLAGS="$CXXFLAGS -g -D_DEBUG -Wstrict-overflow=5"
+ GCC_CFLAGS="$CFLAGS -g -D_DEBUG"
+ GCC_CXXFLAGS="$CXXFLAGS -g -D_DEBUG"
else
- GCC_CFLAGS="$CFLAGS -O2 -DNDEBUG -Wstrict-overflow=5"
- GCC_CXXFLAGS="$CXXFLAGS -O2 -DNDEBUG -Wstrict-overflow=5"
+ GCC_CFLAGS="$CFLAGS -O2 -DNDEBUG"
+ GCC_CXXFLAGS="$CXXFLAGS -O2 -DNDEBUG"
fi
AC_CONFIG_HEADERS([config.h shibsp/config_pub.h])
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-shibboleth/shibboleth-sp2.git
More information about the Pkg-shibboleth-devel
mailing list