From 0c52bfa43effa63ae99736d8ff5aa05bc1a77316 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Mon, 15 Jul 2013 19:26:02 +0300 Subject: [PATCH] CONFIGURE: Added more 64bit integers to probing --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 7983f5a1ce1d..7e17b9c034a1 100755 --- a/configure +++ b/configure @@ -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() {