From: robertc <> Date: Sat, 18 Jan 2003 21:09:08 +0000 (+0000) Subject: bootstrapped X-Git-Tag: SQUID_3_0_PRE1~445 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5c051c2fec41545ce9707509f87659dd2916a657;p=thirdparty%2Fsquid.git bootstrapped --- diff --git a/configure b/configure index 52c51cd3ba..4580807fd1 100755 --- a/configure +++ b/configure @@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 1.311 . +# From configure.in Revision: 1.314 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.53. # @@ -936,6 +936,12 @@ Optional Features: performance improvement, but may cause problems when used with async I/O. Truncate uses more filesystem inodes than unlink.. + --enable-hostname-checks + Tells Squid to rejects any host names with + odd characters in their name to conform with + internet standards. This was the default in + prior Squid versions, but since Squid-3 Squid + no longer tries to police the use of DNS --enable-underscores Squid by default rejects any host names with _ in their name to conform with internet standards. If you disagree with this you may allow _ in @@ -4953,6 +4959,24 @@ _ACEOF fi; +enable_hostname_checks=0 +# Check whether --enable-hostname_checks or --disable-hostname_checks was given. +if test "${enable_hostname_checks+set}" = set; then + enableval="$enable_hostname_checks" + if test "$enableval" = "yes"; then + echo "Disabling hostname sanity checks" + enable_hostname_checks=1 + fi + +fi; +if test "$enable_hostname_checks" = 1; then + +cat >>confdefs.h <<\_ACEOF +#define CHECK_HOSTNAMES 1 +_ACEOF + +fi + # Check whether --enable-underscores or --disable-underscores was given. if test "${enable_underscores+set}" = set; then enableval="$enable_underscores" @@ -14557,6 +14581,7 @@ fi + for ac_func in \ @@ -14594,6 +14619,7 @@ for ac_func in \ regfree \ res_init \ rint \ + sbrk \ select \ seteuid \ setgroups \ diff --git a/lib/Makefile.in b/lib/Makefile.in index 7a2b14cce2..59d9cae39e 100644 --- a/lib/Makefile.in +++ b/lib/Makefile.in @@ -14,7 +14,7 @@ @SET_MAKE@ # -# $Id: Makefile.in,v 1.72 2002/10/15 08:11:36 robertc Exp $ +# $Id: Makefile.in,v 1.73 2003/01/18 14:09:10 robertc Exp $ # SHELL = @SHELL@ @@ -142,7 +142,7 @@ EXTRA_libmiscutil_a_SOURCES = \ libmiscutil_a_SOURCES = \ MemPool.c \ - Array.c \ + Array.cc \ base64.c \ getfullhostname.c \ hash.c \ @@ -244,6 +244,12 @@ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ CCLD = $(CC) LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ CFLAGS = @CFLAGS@ +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ + -o $@ +CXXFLAGS = @CXXFLAGS@ DIST_SOURCES = $(libdlmalloc_a_SOURCES) $(libmiscutil_a_SOURCES) \ $(EXTRA_libmiscutil_a_SOURCES) $(libntlmauth_a_SOURCES) \ $(libregex_a_SOURCES) @@ -254,7 +260,7 @@ SOURCES = $(libdlmalloc_a_SOURCES) $(libmiscutil_a_SOURCES) $(EXTRA_libmiscutil_ all: all-am .SUFFIXES: -.SUFFIXES: .c .o .obj +.SUFFIXES: .c .cc .o .obj $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) cd $(top_srcdir) && \ $(AUTOMAKE) --foreign lib/Makefile @@ -335,6 +341,19 @@ distclean-depend: @AMDEP_TRUE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ $(COMPILE) -c `cygpath -w $<` CCDEPMODE = @CCDEPMODE@ + +.cc.o: +@AMDEP_TRUE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +@AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + $(CXXCOMPILE) -c -o $@ `test -f $< || echo '$(srcdir)/'`$< + +.cc.obj: +@AMDEP_TRUE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +@AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + $(CXXCOMPILE) -c -o $@ `cygpath -w $<` +CXXDEPMODE = @CXXDEPMODE@ uninstall-info-am: tags: TAGS diff --git a/test-suite/Makefile.in b/test-suite/Makefile.in index be244113e2..ddb7589a57 100644 --- a/test-suite/Makefile.in +++ b/test-suite/Makefile.in @@ -16,7 +16,7 @@ # # Makefile for the Squid Object Cache server # -# $Id: Makefile.in,v 1.8 2003/01/17 05:39:15 robertc Exp $ +# $Id: Makefile.in,v 1.9 2003/01/18 14:09:12 robertc Exp $ # SHELL = @SHELL@