From: hno <> Date: Mon, 8 Aug 2005 06:10:50 +0000 (+0000) Subject: Bootstrapped X-Git-Tag: SQUID_3_0_PRE4~690 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7b219d0e29489f88025571fe60039c9a0173ee4c;p=thirdparty%2Fsquid.git Bootstrapped --- diff --git a/configure b/configure index b8dc6754f1..b9285df7d4 100755 --- a/configure +++ b/configure @@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 1.381 . +# From configure.in Revision: 1.382 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.59. # @@ -30410,6 +30410,182 @@ _ACEOF fi +echo "$as_me:$LINENO: checking for pad128_t" >&5 +echo $ECHO_N "checking for pad128_t... $ECHO_C" >&6 +if test "${ac_cv_type_pad128_t+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +/* What a mess.. many systems have added the (now standard) bit types + * in their own ways, so we need to scan a wide variety of headers to + * find them.. + * IMPORTANT: Keep include/squid_types.h syncronised with this list + */ +#if HAVE_SYS_TYPES_H +#include +#endif +#if STDC_HEADERS +#include +#include +#endif +#if HAVE_INTTYPES_H +#include +#endif +#if HAVE_SYS_BITYPES_H +#include +#endif +#if HAVE_SYS_SELECT_H +#include +#endif + + +int +main () +{ +if ((pad128_t *) 0) + return 0; +if (sizeof (pad128_t)) + return 0; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_type_pad128_t=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +ac_cv_type_pad128_t=no +fi +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext +fi +echo "$as_me:$LINENO: result: $ac_cv_type_pad128_t" >&5 +echo "${ECHO_T}$ac_cv_type_pad128_t" >&6 +if test $ac_cv_type_pad128_t = yes; then + +cat >>confdefs.h <<\_ACEOF +#define HAVE_PAD128_T 1 +_ACEOF + +fi + + +echo "$as_me:$LINENO: checking for upad128_t" >&5 +echo $ECHO_N "checking for upad128_t... $ECHO_C" >&6 +if test "${ac_cv_type_upad128_t+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +/* What a mess.. many systems have added the (now standard) bit types + * in their own ways, so we need to scan a wide variety of headers to + * find them.. + * IMPORTANT: Keep include/squid_types.h syncronised with this list + */ +#if HAVE_SYS_TYPES_H +#include +#endif +#if STDC_HEADERS +#include +#include +#endif +#if HAVE_INTTYPES_H +#include +#endif +#if HAVE_SYS_BITYPES_H +#include +#endif +#if HAVE_SYS_SELECT_H +#include +#endif + + +int +main () +{ +if ((upad128_t *) 0) + return 0; +if (sizeof (upad128_t)) + return 0; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_type_upad128_t=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +ac_cv_type_upad128_t=no +fi +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext +fi +echo "$as_me:$LINENO: result: $ac_cv_type_upad128_t" >&5 +echo "${ECHO_T}$ac_cv_type_upad128_t" >&6 +if test $ac_cv_type_upad128_t = yes; then + +cat >>confdefs.h <<\_ACEOF +#define HAVE_UPAD128_T 1 +_ACEOF + +fi + + echo "$as_me:$LINENO: checking for pid_t" >&5 echo $ECHO_N "checking for pid_t... $ECHO_C" >&6 if test "${ac_cv_type_pid_t+set}" = set; then diff --git a/include/autoconf.h.in b/include/autoconf.h.in index 923f7c57be..7948cff0d5 100644 --- a/include/autoconf.h.in +++ b/include/autoconf.h.in @@ -368,6 +368,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_OPENSSL_SSL_H +/* pad128_t is defined in system headers */ +#undef HAVE_PAD128_T + /* pid_t is defined by the system headers */ #undef HAVE_PID_T @@ -638,6 +641,9 @@ /* Do we have unix sockets? (required for the winbind ntlm helper */ #undef HAVE_UNIXSOCKET +/* upad128_t is defined in system headers */ +#undef HAVE_UPAD128_T + /* Define to 1 if you have the header file. */ #undef HAVE_UTIME_H