diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-01-18 10:43:55 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-01-18 10:43:55 +0000 |
commit | a00de093a76403a93889484ce79b0ca0f8797f8d (patch) | |
tree | c32ef6fe977f4c797fa7f37e272e193649086d16 /configure.in | |
parent | 7bfe853af3258341a0cdc2cba15156c63a84c174 (diff) | |
download | curl-a00de093a76403a93889484ce79b0ca0f8797f8d.tar.gz |
commented out the 'long long' and 'long double' checks, as we don't really
use them anyway and they cause warnings in lib/mprint.c
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 43b80d5b1..ea23bf901 100644 --- a/configure.in +++ b/configure.in @@ -524,9 +524,9 @@ AC_HEADER_TIME # mprintf() checks: # check for 'long double' -AC_CHECK_SIZEOF(long double, 8) +# AC_CHECK_SIZEOF(long double, 8) # check for 'long long' -AC_CHECK_SIZEOF(long long, 4) +# AC_CHECK_SIZEOF(long long, 4) # check for ssize_t AC_CHECK_TYPE(ssize_t, int) |