diff options
author | Dag-Erling Smørgrav <des@des.no> | 2018-10-09 23:03:40 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2018-11-10 19:45:14 +1100 |
commit | d0153c77bf7964e694f1d26c56c41a571b8e9466 (patch) | |
tree | fd721207f3f98737cfa5ab77f0457661466a9b83 /configure.ac | |
parent | 9b47b083ca9d866249ada9f02dbd57c87b13806e (diff) |
AC_CHECK_SIZEOF() no longer needs a second argument.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 296124399..0660c5397 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -3455,10 +3455,10 @@ fi | |||
3455 | AC_CHECK_TYPES([long long, unsigned long long, long double]) | 3455 | AC_CHECK_TYPES([long long, unsigned long long, long double]) |
3456 | 3456 | ||
3457 | # Check datatype sizes | 3457 | # Check datatype sizes |
3458 | AC_CHECK_SIZEOF([short int], [2]) | 3458 | AC_CHECK_SIZEOF([short int]) |
3459 | AC_CHECK_SIZEOF([int], [4]) | 3459 | AC_CHECK_SIZEOF([int]) |
3460 | AC_CHECK_SIZEOF([long int], [4]) | 3460 | AC_CHECK_SIZEOF([long int]) |
3461 | AC_CHECK_SIZEOF([long long int], [8]) | 3461 | AC_CHECK_SIZEOF([long long int]) |
3462 | 3462 | ||
3463 | # Sanity check long long for some platforms (AIX) | 3463 | # Sanity check long long for some platforms (AIX) |
3464 | if test "x$ac_cv_sizeof_long_long_int" = "x4" ; then | 3464 | if test "x$ac_cv_sizeof_long_long_int" = "x4" ; then |