1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

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
This commit is contained in:
Daniel Stenberg 2002-01-18 10:43:55 +00:00
parent 7bfe853af3
commit a00de093a7

View File

@ -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)