aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMax Horn2003-06-02 21:22:54 +0000
committerMax Horn2003-06-02 21:22:54 +0000
commit4729b52c3b15982bc23d22be57ce718b29080bc5 (patch)
tree65d92b29b298453c962bf0680def02adecdcb24d /configure
parent6dbd36d668f9e8fb08d3c9bc4da0ecfbad372a0e (diff)
downloadscummvm-rg350-4729b52c3b15982bc23d22be57ce718b29080bc5.tar.gz
scummvm-rg350-4729b52c3b15982bc23d22be57ce718b29080bc5.tar.bz2
scummvm-rg350-4729b52c3b15982bc23d22be57ce718b29080bc5.zip
revamped alignment test; don't delete config.log after configure run (after all it might be important to debug configure)
svn-id: r8275
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure24
1 files changed, 11 insertions, 13 deletions
diff --git a/configure b/configure
index a344a47fc3..09ae94c3e0 100755
--- a/configure
+++ b/configure
@@ -113,7 +113,7 @@ echo $datatype
#
echo "Running ScummVM configure..."
-
+echo "Configure run on" `date` > $TMPLOG
#
# Check any parameters we received
@@ -310,25 +310,23 @@ rm -f tmp_endianess_check tmp_endianess_check.cpp
#
# Check whether memory alignment is required
#
-echo -n "Alignment required (don't worry if this shows a 'Bus error')... "
+echo -n "Alignment required... "
cat > $TMPC << EOF
+#include <stdlib.h>
+#include <signal.h>
int main(int argc, char **argv)
{
- int i;
- unsigned char buf[20];
- for (i = 0; i < 20; i++)
- buf[i] = 0xE7;
- for (i = 0; i < 16; i++) {
- if (*(int *)(&buf[i]) != 0xE7E7E7E7)
- return 1;
- *(int *)(&buf[i]) = 0xE7E7E7E7;
+ unsigned char test[8] = { 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88 };
+ signal(SIGBUS, exit);
+ signal(SIGABRT, exit);
+ signal(SIGSEGV, exit);
+ if (*((unsigned int *)(test + 1)) != 0x55443322 && *((unsigned int *)(test + 1)) != 0x22334455) {
+ return 1;
}
return 0;
}
EOF
_need_memalign=yes
-# TODO: Hide the "Bus error" message, if possible...
-trap true BUS
cc_check && ./$TMPO && _need_memalign=no
if test "$_need_memalign" = yes ; then
_def_align='#define SCUMM_NEED_ALIGNMENT'
@@ -405,7 +403,7 @@ else
fi
echo "$_alsa"
-rm -f $TMPC $TMPO $TMPLOG
+rm -f $TMPC $TMPO
echo