[Scummvm-cvs-logs] scummvm master -> 3dca6fe2bb4537cc223c423d9942c80cb6b8f99e

dhewg dhewg at wiibrew.org
Sat Jan 21 16:30:23 CET 2012


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

Summary:
fd874216fe CONFIGURE: Don't use -pedantic for WebOS
3dca6fe2bb CONFIGURE: Add WebOS --sysroot to CXXFLAGS


Commit: fd874216fe2e7cb5b956c1de8615aef484245d0b
    https://github.com/scummvm/scummvm/commit/fd874216fe2e7cb5b956c1de8615aef484245d0b
Author: dhewg (dhewg at wiibrew.org)
Date: 2012-01-21T07:29:55-08:00

Commit Message:
CONFIGURE: Don't use -pedantic for WebOS

This fixes Tremor autodetection.
tremor/config_types.h typedefs ogg_int64_t, which errors out with
"ISO C++ 1998 does not support ‘long long’" when using -pedantic.

Changed paths:
    configure



diff --git a/configure b/configure
index 51b1989..183d76d 100755
--- a/configure
+++ b/configure
@@ -1619,7 +1619,7 @@ fi;
 # However, some platforms use GNU extensions in system header files, so
 # for these we must not use -pedantic.
 case $_host_os in
-android | gamecube | psp | wii)
+android | gamecube | psp | wii | webos)
 	;;
 *)
 	# ICC does not support pedantic, while GCC and clang do.


Commit: 3dca6fe2bb4537cc223c423d9942c80cb6b8f99e
    https://github.com/scummvm/scummvm/commit/3dca6fe2bb4537cc223c423d9942c80cb6b8f99e
Author: dhewg (dhewg at wiibrew.org)
Date: 2012-01-21T07:29:56-08:00

Commit Message:
CONFIGURE: Add WebOS --sysroot to CXXFLAGS

Fixes compilation with PDK 3.0.5 (libc headers were now found).

Changed paths:
    configure



diff --git a/configure b/configure
index 183d76d..423e55f 100755
--- a/configure
+++ b/configure
@@ -2088,6 +2088,7 @@ case $_host_os in
 		LIBS="$LIBS -lnsl -lsocket"
 		;;
 	webos)
+		CXXFLAGS="$CXXFLAGS --sysroot=$WEBOS_PDK/arm-gcc/sysroot"
 		CXXFLAGS="$CXXFLAGS -I$WEBOS_PDK/include"
 		CXXFLAGS="$CXXFLAGS -I$WEBOS_PDK/include/SDL"
 		CXXFLAGS="$CXXFLAGS -I$WEBOS_PDK/device/usr/include"






More information about the Scummvm-git-logs mailing list