diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-07-14 19:53:44 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-07-14 19:53:44 +0000 |
commit | 863adbb1709a1219cacc304e144590775eb55f1d (patch) | |
tree | 091a4e0ce140358a1770e8eb272883bd2b2d34bb /config.guess | |
parent | e05b5d375cc07f61530f938e725357e85b25ca31 (diff) | |
download | emacs-863adbb1709a1219cacc304e144590775eb55f1d.tar.gz |
(pc:*:*:*): New entry, for DJGPP.libc-970715
Diffstat (limited to 'config.guess')
-rwxr-xr-x | config.guess | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config.guess b/config.guess index 1a1d31f5572..9cf6240ff0e 100755 --- a/config.guess +++ b/config.guess @@ -549,6 +549,11 @@ EOF echo ${UNAME_MACHINE}-pc-sysv32 fi exit 0 ;; + pc:*:*:*) + # 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 + exit 0 ;; Intel:Mach:3*:*) echo i386-pc-mach3 exit 0 ;; |