echo "Autotool bootstrapping complete."
echo "bootstrapping sub projects."
-cd lib/libTrie && $SHELL ./bootstrap.sh
+cd lib/libTrie && ./bootstrap.sh
dnl
dnl Duane Wessels, wessels@nlanr.net, February 1996 (autoconf v2.9)
dnl
-dnl $Id: configure.in,v 1.328 2003/03/10 04:55:33 robertc Exp $
+dnl $Id: configure.in,v 1.329 2003/03/11 22:11:37 robertc 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.328 $)dnl
+AC_REVISION($Revision: 1.329 $)dnl
AC_PREFIX_DEFAULT(/usr/local/squid)
AM_MAINTAINER_MODE
fi
fi
+dnl set squid required flags
+if test "$GCC" = "yes"; then
+ SQUID_CFLAGS="-Werror -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments"
+ SQUID_CXXFLAGS="$SQUID_CFLAGS"
+else
+ SQUID_CFLAGS=
+ SQUID_CXXFLAGS=
+fi
+AC_SUBST(SQUID_CFLAGS)
+AC_SUBST(SQUID_CXXFLAGS)
+
dnl Set LDFLAGS
if test -z "$PRESET_LDFLAGS"; then
if test "$GCC" = "yes"; then
#
# Makefile for the Squid Object Cache server
#
-# $Id: Makefile.am,v 1.65 2003/03/10 04:56:36 robertc Exp $
+# $Id: Makefile.am,v 1.66 2003/03/11 22:11:38 robertc Exp $
#
# Uncomment and customize the following to suit your needs:
#
ARP_ACL_SOURCE =
endif
-AM_CFLAGS = -Werror -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments
-AM_CXXFLAGS = -Werror -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments
+AM_CFLAGS = @SQUID_CFLAGS@
+AM_CXXFLAGS = @SQUID_CXXFLAGS@
SUBDIRS = fs repl auth
# Makefile for authentication modules in the Squid Object Cache server
#
-# $Id: Makefile.am,v 1.3 2003/01/23 00:37:50 robertc Exp $
+# $Id: Makefile.am,v 1.4 2003/03/11 22:11:39 robertc Exp $
#
AUTOMAKE_OPTIONS = subdir-objects
-AM_CXXFLAGS = -Werror -Wall
+AM_CFLAGS = @SQUID_CFLAGS@
+AM_CXXFLAGS = @SQUID_CXXFLAGS@
##DIST_SUBDIRS = basic digest ntlm
##SUBDIRS = @AUTH_MODULES@
# Makefile for storage modules in the Squid Object Cache server
#
-# $Id: Makefile.am,v 1.6 2003/02/02 12:55:27 robertc Exp $
+# $Id: Makefile.am,v 1.7 2003/03/11 22:11:39 robertc Exp $
#
AUTOMAKE_OPTIONS = subdir-objects
-AM_CFLAGS = -Werror -Wall
-AM_CXXFLAGS = -Werror -Wall
+AM_CFLAGS = @SQUID_CFLAGS@
+AM_CXXFLAGS = @SQUID_CXXFLAGS@
DIST_SUBDIRS = aufs coss diskd null ufs
# Makefile for storage modules in the Squid Object Cache server
#
-# $Id: Makefile.am,v 1.5 2003/01/23 00:38:25 robertc Exp $
+# $Id: Makefile.am,v 1.6 2003/03/11 22:11:40 robertc Exp $
#
AUTOMAKE_OPTIONS = subdir-objects
-AM_CFLAGS = -Werror -Wall
-AM_CXXFLAGS = -Werror -Wall
+AM_CFLAGS = @SQUID_CFLAGS@
+AM_CXXFLAGS = @SQUID_CXXFLAGS@
# No recursion is needed for the subdirs, we build from here. // @REPL_POLICIES@