]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
From: Makoto MATSUSHITA <matusita@ics.es.osaka-u.ac.jp>
authorwessels <>
Tue, 4 Aug 1998 04:24:47 +0000 (04:24 +0000)
committerwessels <>
Tue, 4 Aug 1998 04:24:47 +0000 (04:24 +0000)
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.

cfgaux/config.guess
configure.in

index e9e44559f80a46053e18d6c7a7e88acb6bf04c08..b0f5dca307d6b81cf6591eb94b3952b452dcbdc0 100755 (executable)
@@ -552,6 +552,9 @@ EOF
                            # says <Richard.M.Bartel@ccMail.Census.GOV>
         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
index 8dfa0cbc3bf0f5b07ece54dfe30cb22e9a7ca705..2c04259ce273b62fe098b3a5c7f43124c833036f 100644 (file)
@@ -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 <bne@CareNet.hu>