From: Ben Elliston Date: Sat, 26 Sep 1998 01:29:31 +0000 (+0000) Subject: 1998-09-26 Ben Elliston X-Git-Tag: autoconf-2-13-rc1~42 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9acec64512cbdd0957c09f4f90a393d612952f72;p=thirdparty%2Fautoconf.git 1998-09-26 Ben Elliston * config.guess: Treat all SPARC variant processors running BSD/OS as just `sparc' for compatibility reasons. Contributed by Chris Torek . --- diff --git a/ChangeLog b/ChangeLog index 5cd627b2..7dd3fe88 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 1998-09-26 Ben Elliston + * config.guess: Treat all SPARC variant processors running BSD/OS + as just `sparc' for compatibility reasons. Contributed by Chris + Torek . + * acgeneral.m4 (AC_CHECK_FILE): New macro. Checks for the existence of a file in the file system (native only). Contributed by Theodore Y. Ts'o . diff --git a/config.guess b/config.guess index 79d5f13a..20d52e6e 100755 --- a/config.guess +++ b/config.guess @@ -507,6 +507,9 @@ EOF hp300:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; + sparc*:BSD/OS:*:*) + echo sparc-unknown-bsdi${UNAME_RELEASE} + exit 0 ;; i?86:BSD/386:*:* | *:BSD/OS:*:*) echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} exit 0 ;;