[Scummvm-cvs-logs] SF.net SVN: scummvm: [30658] scummvm
jvprat at users.sourceforge.net
jvprat at users.sourceforge.net
Sun Jan 27 16:57:47 CET 2008
Revision: 30658
http://scummvm.svn.sourceforge.net/scummvm/?rev=30658&view=rev
Author: jvprat
Date: 2008-01-27 07:57:47 -0800 (Sun, 27 Jan 2008)
Log Message:
-----------
Fix the endianness detection in Solaris 8 (It fixes but #1871509 "GUI distorted on Solaris/sparc")
Modified Paths:
--------------
scummvm/branches/branch-0-11-0/configure
scummvm/trunk/configure
Modified: scummvm/branches/branch-0-11-0/configure
===================================================================
--- scummvm/branches/branch-0-11-0/configure 2008-01-27 15:56:56 UTC (rev 30657)
+++ scummvm/branches/branch-0-11-0/configure 2008-01-27 15:57:47 UTC (rev 30658)
@@ -899,7 +899,7 @@
int main() { _ascii (); _ebcdic (); return 0; }
EOF
$CXX $CXXFLAGS -c -o tmp_endianness_check.o tmp_endianness_check.cpp
-if grep BIGenDianSyS tmp_endianness_check.o >/dev/null; then
+if strings tmp_endianness_check.o | grep BIGenDianSyS >/dev/null; then
_endian=big
else
_endian=little
Modified: scummvm/trunk/configure
===================================================================
--- scummvm/trunk/configure 2008-01-27 15:56:56 UTC (rev 30657)
+++ scummvm/trunk/configure 2008-01-27 15:57:47 UTC (rev 30658)
@@ -905,7 +905,7 @@
int main() { _ascii (); _ebcdic (); return 0; }
EOF
$CXX $CXXFLAGS -c -o tmp_endianness_check.o tmp_endianness_check.cpp
-if grep BIGenDianSyS tmp_endianness_check.o >/dev/null; then
+if strings tmp_endianness_check.o | grep BIGenDianSyS >/dev/null; then
_endian=big
else
_endian=little
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list