From: wessels <> Date: Tue, 4 Aug 1998 04:24:47 +0000 (+0000) Subject: From: Makoto MATSUSHITA X-Git-Tag: SQUID_3_0_PRE1~2936 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f62c73dc4e85bd3a8142549aebc65e23c311e08f;p=thirdparty%2Fsquid.git From: Makoto MATSUSHITA 2) Porting to NEWS-OS 6.x To compile Squid 1.2beta with NEWS-OS 6.x, SVR4-based OS by sony, following patch is required; gettimeofday() has only one argument. --- diff --git a/cfgaux/config.guess b/cfgaux/config.guess index e9e44559f8..b0f5dca307 100755 --- a/cfgaux/config.guess +++ b/cfgaux/config.guess @@ -552,6 +552,9 @@ EOF # says echo i586-unisys-sysv4 exit 0 ;; + news*:NEWS-OS:[56].*:*) + echo mips-sony-newsos${UNAME_RELEASE} + exit 0 ;; esac #echo '(No uname command or uname output not recognized.)' 1>&2 diff --git a/configure.in b/configure.in index 8dfa0cbc3b..2c04259ce2 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.136 1998/07/31 00:15:24 wessels Exp $ +dnl $Id: configure.in,v 1.137 1998/08/03 22:24:52 wessels Exp $ dnl dnl dnl AC_INIT(src/main.c) AC_CONFIG_HEADER(include/autoconf.h) -AC_REVISION($Revision: 1.136 $)dnl +AC_REVISION($Revision: 1.137 $)dnl AC_PREFIX_DEFAULT(/usr/local/squid) AC_CONFIG_AUX_DIR(cfgaux) @@ -677,6 +677,9 @@ dnl Please change your configure script. AIX doesn't need -lbsd. [*-*-solaris2.[0-4]]) AC_DEFINE(GETTIMEOFDAY_NO_TZP) ;; + *-sony-newsos[56]*) + AC_DEFINE(GETTIMEOFDAY_NO_TZP) + ;; esac # Recommended by Balint Nagy Endre