From 8e9aefbf6edafa9eed41bd90e5579e5bcde34b03 Mon Sep 17 00:00:00 2001 From: Alyssa Milburn Date: Tue, 16 Jul 2013 11:00:09 +0200 Subject: CONFIGURE: Use -Wno-long-long when we use -pedantic. --- configure | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3