aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schickel2012-01-10 15:37:34 +0100
committerJohannes Schickel2012-01-10 16:13:20 +0100
commit3606ebed6abbfc79f0cc5373aae80bd78667f876 (patch)
treec8374ed00e7fc64b6a9cdd156706e4fc8434f447
parent1432011fdc885849e60ffa2161e378a00ceb6176 (diff)
downloadscummvm-rg350-3606ebed6abbfc79f0cc5373aae80bd78667f876.tar.gz
scummvm-rg350-3606ebed6abbfc79f0cc5373aae80bd78667f876.tar.bz2
scummvm-rg350-3606ebed6abbfc79f0cc5373aae80bd78667f876.zip
CONFIGURE: Fix formatting.
Thanks to Max for pointing out.
-rwxr-xr-xconfigure28
1 files changed, 14 insertions, 14 deletions
diff --git a/configure b/configure
index c10e10aab1..4f0cf9545a 100755
--- a/configure
+++ b/configure
@@ -1709,27 +1709,27 @@ EOF
# Check whether the system is 32-bit
#
pointer_is_32bit() {
- cat > tmp_pointer_is_32bit.cpp << EOF
+ cat > tmp_pointer_is_32bit.cpp << EOF
int main() {
- static int test_array[1 - 2 * !(sizeof(void *) == 4)];
+ static int test_array[1 - 2 * !(sizeof(void *) == 4)];
}
EOF
- $CXX $CXXFLAGS -c -o $TMPO.o tmp_pointer_is_32bit.cpp 2>/dev/null
- status=$?
- cc_check_clean tmp_pointer_is_32bit.cpp
- return $status
+ $CXX $CXXFLAGS -c -o $TMPO.o tmp_pointer_is_32bit.cpp 2>/dev/null
+ status=$?
+ cc_check_clean tmp_pointer_is_32bit.cpp
+ return $status
}
echo_n "Checking 64-bitness... "
pointer_is_32bit
if test $? -eq 0; then
- type_ptr=int32
- echo "no"
- add_line_to_config_h "/* #define SCUMM_64BITS */"
+ type_ptr=int32
+ echo "no"
+ add_line_to_config_h "/* #define SCUMM_64BITS */"
else
- type_ptr=int64
- echo "yes"
- add_line_to_config_h "#define SCUMM_64BITS"
+ type_ptr=int64
+ echo "yes"
+ add_line_to_config_h "#define SCUMM_64BITS"
fi
#
@@ -1758,8 +1758,8 @@ type_8_byte=`find_type_with_size 8`
TMPR="$?"
echo "$type_8_byte"
if test $TMPR -eq 0; then
- _def_64bit_type_signed="typedef signed $type_8_byte int64;"
- _def_64bit_type_unsigned="typedef unsigned $type_8_byte uint64;"
+ _def_64bit_type_signed="typedef signed $type_8_byte int64;"
+ _def_64bit_type_unsigned="typedef unsigned $type_8_byte uint64;"
fi
# force cleanup after check for 8 bytes type
cc_check_clean tmp_find_type_with_size.cpp