From d1b7ebbaf6d6fb0659102a7be9e2e60f4891cbbb Mon Sep 17 00:00:00 2001 From: Ben Elliston Date: Thu, 3 Feb 2000 10:39:36 +0000 Subject: [PATCH] 2000-02-03 Ben Elliston * config.guess: Handle versions of DJGPP's uname(1) command which return the exact machine type and not just `pc'. From Laurynas Biveinis . --- ChangeLog | 4 ++++ config.guess | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/ChangeLog b/ChangeLog index 354d671..5bd19f7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,8 @@ 2000-02-03 Ben Elliston + * config.guess: Handle versions of DJGPP's uname(1) command which + return the exact machine type and not just `pc'. From Laurynas + Biveinis . + * config.guess: Import from autoconf source tree. * config.sub: Likewise. diff --git a/config.guess b/config.guess index b3fc3ce..8f674ad 100755 --- a/config.guess +++ b/config.guess @@ -859,7 +859,11 @@ EOF echo ${UNAME_MACHINE}-pc-sysv32 fi exit 0 ;; + i?86:*DOS:*:*) + echo ${UNAME_MACHINE}-pc-msdosdjgpp + exit 0 ;; pc:*:*:*) + # Left here for compatibility: # uname -m prints for DJGPP always 'pc', but it prints nothing about # the processor, so we play safe by assuming i386. echo i386-pc-msdosdjgpp