dnl
dnl Duane Wessels, wessels@nlanr.net, February 1996 (autoconf v2.9)
dnl
-dnl $Id: configure.in,v 1.331 2003/04/27 00:18:00 hno Exp $
+dnl $Id: configure.in,v 1.332 2003/04/29 16:08:18 hno Exp $
dnl
dnl
dnl
AC_CONFIG_AUX_DIR(cfgaux)
AM_INIT_AUTOMAKE(squid, 3.0-DEVEL)
AM_CONFIG_HEADER(include/autoconf.h)
-AC_REVISION($Revision: 1.331 $)dnl
+AC_REVISION($Revision: 1.332 $)dnl
AC_PREFIX_DEFAULT(/usr/local/squid)
AM_MAINTAINER_MODE
*-ibm-aix*)
echo "Removing -lbsd for AIX..."
LIBS=`echo $LIBS | sed -e s/-lbsd//`
+ case "$host" in
dnl From: mlaster@metavillage.com (Mike Laster)
dnl AIX 4.1.4.x does not have header files for snprintf/vsnprintf
dnl So using the internal versions generates a load of warnings
dnl during compile.
- echo "disabling snprintf/vsnprintf for $host"
- ac_cv_func_snprintf=no
- ac_cv_func_vsnprintf=no
+ *-ibm-aix4*)
+ echo "disabling snprintf/vsnprintf for $host"
+ ac_cv_func_snprintf=no
+ ac_cv_func_vsnprintf=no
+ ;;
+ esac
;;
*m88k*)
CFLAGS="$CFLAGS -D_SQUID_MOTOROLA_"
/*
- * $Id: tools.cc,v 1.235 2003/04/24 06:35:09 hno Exp $
+ * $Id: tools.cc,v 1.236 2003/04/29 16:08:19 hno Exp $
*
* DEBUG: section 21 Misc Functions
* AUTHOR: Harvest Derived
return r->ru_maxrss;
#elif defined(_SQUID_OSF_)
+ return r->ru_maxrss;
+#elif defined(_SQUID_AIX_)
+
return r->ru_maxrss;
#elif defined(BSD4_4)