diff options
author | jani@hynda.mysql.fi <> | 2002-03-13 01:28:13 +0200 |
---|---|---|
committer | jani@hynda.mysql.fi <> | 2002-03-13 01:28:13 +0200 |
commit | 609d7520fc1ae53e4e0194c624af1e98b970bea4 (patch) | |
tree | 85df10184368163650d096e55e2c9127a0c3e769 /config.guess | |
parent | 39c4a730fd736c4701c16654fe43a6ecc14c180c (diff) | |
download | mariadb-git-609d7520fc1ae53e4e0194c624af1e98b970bea4.tar.gz |
Modifications to MySQL source in order to make it compile on QnX.
Diffstat (limited to 'config.guess')
-rwxr-xr-x | config.guess | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/config.guess b/config.guess index a3369c0f908..7c3ea484210 100755 --- a/config.guess +++ b/config.guess @@ -563,6 +563,15 @@ EOF F301:UNIX_System_V:*:*) echo f301-fujitsu-uxpv`echo $UNAME_RELEASE | sed 's/ .*//'` exit 0 ;; + *:procnto*:*:* | *:QNX:[0123456789]*:*) + if test "${UNAME_MACHINE}" = "c86pc"; then + UNAME_MACHINE=pc + fi + echo `uname -p`-${UNAME_MACHINE}-nto-qnx + exit 0;; + *:QNX:*:*) + echo i386-pc-qnx + exit 0;; hp3[0-9][05]:NetBSD:*:*) echo m68k-hp-netbsd${UNAME_RELEASE} exit 0 ;; |