From: wessels <> Date: Tue, 20 Aug 1996 05:09:42 +0000 (+0000) Subject: 1.0.7 -> 1.0.8 merge X-Git-Tag: SQUID_3_0_PRE1~5953 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e973b94a2a669a41790542de01469131aea33561;p=thirdparty%2Fsquid.git 1.0.7 -> 1.0.8 merge --- diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 3353955875..2615aa6d26 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -15,7 +15,7 @@ and ideas to make this software available. Ansgar Hockmann Joe Ramey Kolics Bertold - Doug Urner + Doug Urner Markus Gyger Richard Huveneers Markus Stumpf diff --git a/configure b/configure index 561387e127..3309da5d3b 100755 --- a/configure +++ b/configure @@ -517,7 +517,7 @@ fi -# From configure.in Revision: 1.25 +# From configure.in Revision: 1.26 ac_aux_dir= for ac_dir in aux $srcdir/aux; do if test -f $ac_dir/install-sh; then @@ -671,13 +671,19 @@ fi XXXCC=`echo $CC | awk '{print $1}'` -if test "`basename $XXXCC`" != "gcc"; then +if test "`basename $XXXCC`" = "gcc"; then + : +elif test "`basename $XXXCC`" = "shlicc"; then + : +elif test "`basename $XXXCC`" = "shlicc2"; then + : +else echo '**************************************************************'; echo '**************************************************************'; echo '**'; echo '** WARNING: Squid is only guaranteed to compile with GNU cc.'; echo "** Currently, you're using $CC"; - echo '** '; + echo '**'; echo '**************************************************************'; echo '**************************************************************'; sleep 5 @@ -729,7 +735,7 @@ else # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. cat > conftest.$ac_ext < Syntax Error @@ -743,7 +749,7 @@ else rm -rf conftest* CPP="${CC-cc} -E -traditional-cpp" cat > conftest.$ac_ext < Syntax Error @@ -1041,7 +1047,7 @@ if eval "test \"`echo '$''{'ac_cv_header_dirent_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #include <$ac_hdr> @@ -1081,7 +1087,7 @@ else ac_save_LIBS="$LIBS" LIBS="-ldir $LIBS" cat > conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext <&6 else cat > conftest.$ac_ext < #include @@ -1197,7 +1203,7 @@ rm -f conftest* if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat > conftest.$ac_ext < EOF @@ -1215,7 +1221,7 @@ fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat > conftest.$ac_ext < EOF @@ -1236,7 +1242,7 @@ if test "$cross_compiling" = yes; then : else cat > conftest.$ac_ext < #define ISLOWER(c) ('a' <= (c) && (c) <= 'z') @@ -1319,7 +1325,7 @@ if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF @@ -1350,7 +1356,7 @@ done echo $ac_n "checking for tm->tm_gmtoff""... $ac_c" 1>&6 cat > conftest.$ac_ext < #include @@ -1376,7 +1382,7 @@ rm -f conftest* echo $ac_n "checking for extended mallinfo""... $ac_c" 1>&6 cat > conftest.$ac_ext < #include @@ -1408,7 +1414,7 @@ else { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; } else cat > conftest.$ac_ext < main() @@ -1442,7 +1448,7 @@ else { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; } else cat > conftest.$ac_ext < main() @@ -1476,7 +1482,7 @@ if eval "test \"`echo '$''{'ac_cv_header_alloca_h'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { return 0; } @@ -1508,7 +1514,7 @@ if eval "test \"`echo '$''{'ac_cv_func_alloca'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&6 else cat > conftest.$ac_ext <&6 else cat > conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext <&6 else cat > conftest.$ac_ext < conftest.$ac_ext < @@ -2257,7 +2263,7 @@ if test "$cross_compiling" = yes; then SQUID_UDP_SO_SNDBUF=8192 else cat > conftest.$ac_ext < @@ -2293,7 +2299,7 @@ if test "$cross_compiling" = yes; then SQUID_UDP_SO_RCVBUF=8192 else cat > conftest.$ac_ext < @@ -2329,7 +2335,7 @@ if test "$cross_compiling" = yes; then SQUID_TCP_SO_SNDBUF=8192 else cat > conftest.$ac_ext < @@ -2365,7 +2371,7 @@ if test "$cross_compiling" = yes; then SQUID_TCP_SO_RCVBUF=8192 else cat > conftest.$ac_ext < @@ -2398,7 +2404,7 @@ EOF echo $ac_n "checking if sys_errlist is already defined""... $ac_c" 1>&6 cat > conftest.$ac_ext < int main() { return 0; } diff --git a/configure.in b/configure.in index 0a2d567306..1c7ffbc238 100644 --- a/configure.in +++ b/configure.in @@ -3,13 +3,13 @@ dnl Configuration input file for Squid dnl dnl Duane Wessels, wessels@nlanr.net, February 1996 (autoconf v2.9) dnl -dnl $Id: configure.in,v 1.26 1996/08/14 22:57:01 wessels Exp $ +dnl $Id: configure.in,v 1.27 1996/08/19 23:09:43 wessels Exp $ dnl dnl dnl AC_INIT(src/main.c) AC_CONFIG_HEADER(include/autoconf.h) -AC_REVISION($Revision: 1.26 $)dnl +AC_REVISION($Revision: 1.27 $)dnl AC_PREFIX_DEFAULT(/usr/local/squid) AC_CONFIG_AUX_DIR(aux) @@ -49,13 +49,19 @@ AC_PROG_CC dnl Warn if not using GNU cc XXXCC=`echo $CC | awk '{print $1}'` -if test "`basename $XXXCC`" != "gcc"; then +if test "`basename $XXXCC`" = "gcc"; then + : +elif test "`basename $XXXCC`" = "shlicc"; then + : +elif test "`basename $XXXCC`" = "shlicc2"; then + : +else echo '**************************************************************'; echo '**************************************************************'; echo '**'; echo '** WARNING: Squid is only guaranteed to compile with GNU cc.'; echo "** Currently, you're using $CC"; - echo '** '; + echo '**'; echo '**************************************************************'; echo '**************************************************************'; sleep 5 diff --git a/include/version.h b/include/version.h index 7f53d12b47..f837eca35d 100644 --- a/include/version.h +++ b/include/version.h @@ -1,7 +1,11 @@ -/* $Id: version.h,v 1.27 1996/08/14 22:57:03 wessels Exp $ +/* $Id: version.h,v 1.28 1996/08/19 23:09:46 wessels Exp $ * * SQUID_VERSION - String for version id of this distribution */ #ifndef SQUID_VERSION #define SQUID_VERSION "1.1.alpha9" #endif + +#ifndef SQUID_RELEASE_TIME +#define SQUID_RELEASE_TIME squid_curtime +#endif