[Scummvm-cvs-logs] scummvm master -> 6a984425e877d5bb636fba185f550dc84dc7a70d

digitall dgturner at iee.org
Wed Apr 2 14:10:17 CEST 2014


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:
6a984425e8 CONFIGURE: Remove noisy format warnings from AmigaOS4 builds.


Commit: 6a984425e877d5bb636fba185f550dc84dc7a70d
    https://github.com/scummvm/scummvm/commit/6a984425e877d5bb636fba185f550dc84dc7a70d
Author: D G Turner (digitall at scummvm.org)
Date: 2014-04-02T13:13:22+01:00

Commit Message:
CONFIGURE: Remove noisy format warnings from AmigaOS4 builds.

This is due to the 4 byte long as int32 which leads to format mismatch
warnings. These are supressed to allow any real issues to be seen.

Changed paths:
    configure



diff --git a/configure b/configure
index caf88b3..dc8eace 100755
--- a/configure
+++ b/configure
@@ -2058,6 +2058,8 @@ case $_host_os in
 		# We have to use 'long' for our 4 byte typedef because AmigaOS already typedefs (u)int32
 		# as (unsigned) long, and consequently we'd get a compiler error otherwise.
 		type_4_byte='long'
+		# Supress format warnings as the long 4 byte causes noisy warnings.
+		CXXFLAGS="$CXXFLAGS -Wno-format"
 		add_line_to_config_mk 'AMIGAOS = 1'
 		;;
 	android)






More information about the Scummvm-git-logs mailing list