diff options
author | Eugene Sandulenko | 2013-07-15 19:26:02 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2013-07-15 19:26:02 +0300 |
commit | 0c52bfa43effa63ae99736d8ff5aa05bc1a77316 (patch) | |
tree | 7184bebe0cb822c5dfd832b6e9266df3c62cbe83 /configure | |
parent | 6dc3768faaa272a12e3c6e7ce0965905338132ad (diff) | |
download | scummvm-rg350-0c52bfa43effa63ae99736d8ff5aa05bc1a77316.tar.gz scummvm-rg350-0c52bfa43effa63ae99736d8ff5aa05bc1a77316.tar.bz2 scummvm-rg350-0c52bfa43effa63ae99736d8ff5aa05bc1a77316.zip |
CONFIGURE: Added more 64bit integers to probing
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1843,7 +1843,7 @@ esac # Determine a data type with the given length # find_type_with_size() { - for datatype in int short char long "long long" unknown; do + for datatype in int short char long "long long" __int64 "long long int" unknown; do cat > tmp_find_type_with_size.cpp << EOF typedef $datatype ac__type_sizeof_; int main() { |