[Scummvm-cvs-logs] scummvm master -> 8e9aefbf6edafa9eed41bd90e5579e5bcde34b03

fuzzie fuzzie at fuzzie.org
Tue Jul 16 11:02:45 CEST 2013


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
8e9aefbf6e CONFIGURE: Use -Wno-long-long when we use -pedantic.


Commit: 8e9aefbf6edafa9eed41bd90e5579e5bcde34b03
    https://github.com/scummvm/scummvm/commit/8e9aefbf6edafa9eed41bd90e5579e5bcde34b03
Author: Alyssa Milburn (fuzzie at fuzzie.org)
Date: 2013-07-16T02:00:34-07:00

Commit Message:
CONFIGURE: Use -Wno-long-long when we use -pedantic.

Changed paths:
    configure



diff --git a/configure b/configure
index 7e17b9c..1da7d7f 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






More information about the Scummvm-git-logs mailing list