dnl
dnl Duane Wessels, wessels@nlanr.net, February 1996 (autoconf v2.9)
dnl
-dnl $Id: configure.in,v 1.143 1998/08/18 19:19:46 wessels Exp $
+dnl $Id: configure.in,v 1.144 1998/08/21 03:48:43 wessels Exp $
dnl
dnl
dnl
AC_INIT(src/main.c)
AC_CONFIG_HEADER(include/autoconf.h)
-AC_REVISION($Revision: 1.143 $)dnl
+AC_REVISION($Revision: 1.144 $)dnl
AC_PREFIX_DEFAULT(/usr/local/squid)
AC_CONFIG_AUX_DIR(cfgaux)
fi
])
+dnl Disable HTTP violations
+AC_ARG_ENABLE(http-violations,
+[ --disable-http-violations
+ This allows you to remove code which is known to
+ violate the HTTP protocol specification.
+],
+[ if test "$enableval" = "no" ; then
+ echo "Disabling HTTP Violations"
+ AC_DEFINE(HTTP_VIOLATIONS, 0);
+ else
+ AC_DEFINE(HTTP_VIOLATIONS, 1);
+ fi
+])
+
# Force some compilers to use ANSI features
#
case "$host" in