2000-02-03 Ben Elliston <bje@redhat.com>

* config.guess: Handle versions of DJGPP's uname(1) command which
	return the exact machine type and not just `pc'. From Laurynas
	Biveinis <lauras@softhome.net>.
This commit is contained in:
Ben Elliston 2000-02-03 10:39:36 +00:00
parent 751ec62875
commit d1b7ebbaf6
2 changed files with 8 additions and 0 deletions

View File

@ -1,4 +1,8 @@
2000-02-03 Ben Elliston <bje@redhat.com>
* config.guess: Handle versions of DJGPP's uname(1) command which
return the exact machine type and not just `pc'. From Laurynas
Biveinis <lauras@softhome.net>.
* config.guess: Import from autoconf source tree.
* config.sub: Likewise.

4
config.guess vendored
View File

@ -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