diff options
author | Ian Lance Taylor <ian@airs.com> | 1993-05-27 15:07:45 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1993-05-27 15:07:45 +0000 |
commit | 9c06948623fc5e78fd55bade39656ca84ab84656 (patch) | |
tree | 4eb1df663ddd10cb115d9e5eab950f8fe5a4310f | |
parent | 37ff799b81d764a10c420977e41fcc22088219a2 (diff) | |
download | gdb-9c06948623fc5e78fd55bade39656ca84ab84656.zip gdb-9c06948623fc5e78fd55bade39656ca84ab84656.tar.gz gdb-9c06948623fc5e78fd55bade39656ca84ab84656.tar.bz2 |
* config.guess: Added special check for i[34]86-unixware-sysv4*.
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | config.guess | 6 |
2 files changed, 9 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Thu May 27 08:05:31 1993 Ian Lance Taylor (ian@cygnus.com) + + * config.guess: Added special check for i[34]86-unixware-sysv4*. + Wed May 26 16:33:40 1993 Ian Lance Taylor (ian@cygnus.com) * config.guess: For i[34]86-unknown-sysv4 use UNAME_MACHINE for diff --git a/config.guess b/config.guess index 7693163..ee884e0 100755 --- a/config.guess +++ b/config.guess @@ -113,7 +113,11 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in echo ${UNAME_MACHINE}-unknown-linux exit 0 ;; i[34]86:UNIX_SV:4.*:*) - echo ${UNAME_MACHINE}-unknown-sysv4 + if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then + echo ${UNAME_MACHINE}-unixware-sysv${UNAME_RELEASE} + else + echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE} + fi exit 0 ;; i[34]86:*:3.2:*) if /bin/uname -X 2>/dev/null >/dev/null ; then |