aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordhewg2012-01-21 16:05:17 +0100
committerdhewg2012-01-21 16:29:55 +0100
commitfd874216fe2e7cb5b956c1de8615aef484245d0b (patch)
tree6eed158d6aa4fe7d6b826f251212028a164d29c1
parentd62e1f28cb08514e7d08c2ea1318b6d5a03296a8 (diff)
downloadscummvm-rg350-fd874216fe2e7cb5b956c1de8615aef484245d0b.tar.gz
scummvm-rg350-fd874216fe2e7cb5b956c1de8615aef484245d0b.tar.bz2
scummvm-rg350-fd874216fe2e7cb5b956c1de8615aef484245d0b.zip
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.
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 51b19894d3..183d76db4f 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.