diff options
author | Johannes Schickel | 2012-01-10 16:11:10 +0100 |
---|---|---|
committer | Johannes Schickel | 2012-01-10 16:13:29 +0100 |
commit | c74fde632fa3ecd2d4fb238878191da270b96e1e (patch) | |
tree | 231f0153d4aa698c11beab69036658ecc2478cc5 | |
parent | a3e06d507449f1b736c19cbd46662383f59e75df (diff) | |
download | scummvm-rg350-c74fde632fa3ecd2d4fb238878191da270b96e1e.tar.gz scummvm-rg350-c74fde632fa3ecd2d4fb238878191da270b96e1e.tar.bz2 scummvm-rg350-c74fde632fa3ecd2d4fb238878191da270b96e1e.zip |
CONFIGURE: Also check "long long" in find_type_with_size.
This is because on Win64 "long" is 4 bytes and only "long long" is 8 bytes.
Without this check we would not have a 64 bit integer type on Win64.
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1682,7 +1682,7 @@ esac # Determine a data type with the given length # find_type_with_size() { - for datatype in int short char long unknown; do + for datatype in int short char long "long long" unknown; do cat > tmp_find_type_with_size.cpp << EOF typedef $datatype ac__type_sizeof_; int main() { |