aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlyssa Milburn2013-07-16 11:00:09 +0200
committerAlyssa Milburn2013-07-16 11:00:34 +0200
commit8e9aefbf6edafa9eed41bd90e5579e5bcde34b03 (patch)
treed0faff682d2d9084679285c2fe9379c5c262add8
parent0c52bfa43effa63ae99736d8ff5aa05bc1a77316 (diff)
downloadscummvm-rg350-8e9aefbf6edafa9eed41bd90e5579e5bcde34b03.tar.gz
scummvm-rg350-8e9aefbf6edafa9eed41bd90e5579e5bcde34b03.tar.bz2
scummvm-rg350-8e9aefbf6edafa9eed41bd90e5579e5bcde34b03.zip
CONFIGURE: Use -Wno-long-long when we use -pedantic.
-rwxr-xr-xconfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure b/configure
index 7e17b9c034..1da7d7fb78 100755
--- a/configure
+++ b/configure
@@ -1785,7 +1785,8 @@ android | gamecube | psp | tizen | wii | webos)
*)
# ICC does not support pedantic, while GCC and clang do.
if test "$have_icc" = no ; then
- CXXFLAGS="$CXXFLAGS -pedantic"
+ # We *do* want the 'long long' extension.
+ CXXFLAGS="$CXXFLAGS -pedantic -Wno-long-long"
fi
;;
esac