From: Daniel Stenberg Date: Wed, 3 May 2006 22:39:49 +0000 (+0000) Subject: moved the curl_off_t check to within the --enable-debug block where it belongs since... X-Git-Tag: curl-7_15_4~61 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=80ee5d3bd82343dc7064e6754032690d8b6887b2;p=thirdparty%2Fcurl.git moved the curl_off_t check to within the --enable-debug block where it belongs since it is a somewhat ugly hack --- diff --git a/ares/configure.ac b/ares/configure.ac index 798ca18625..ea38b89234 100644 --- a/ares/configure.ac +++ b/ares/configure.ac @@ -47,6 +47,15 @@ AC_HELP_STRING([--disable-debug],[Disable debug options]), CPPFLAGS="$CPPFLAGS -DCURLDEBUG -I$srcdir/../include" CFLAGS="$CFLAGS -g" + dnl check for how to do large files, needed to get the curl_off_t check + dnl done right + AC_SYS_LARGEFILE + + AC_CHECK_SIZEOF(curl_off_t, ,[ +#include +#include "$srcdir/../include/curl/curl.h" + ]) + dnl set compiler "debug" options to become more picky, and remove dnl optimize options from CFLAGS CURL_CC_DEBUG_OPTS @@ -121,10 +130,6 @@ AC_C_CONST AC_TYPE_SIZE_T AC_HEADER_TIME -AC_CHECK_SIZEOF(curl_off_t, ,[ -#include -#include "$srcdir/include/curl/curl.h" -]) AC_CHECK_SIZEOF(size_t) AC_CHECK_SIZEOF(long) AC_CHECK_SIZEOF(time_t)