diff options
author | unknown <jani@hynda.mysql.fi> | 2002-03-13 01:28:13 +0200 |
---|---|---|
committer | unknown <jani@hynda.mysql.fi> | 2002-03-13 01:28:13 +0200 |
commit | d716037e6ea6d6b0ff42ed9ad544529b0b37e261 (patch) | |
tree | 85df10184368163650d096e55e2c9127a0c3e769 /config.guess | |
parent | 0e43a70453321aac082c4c44665b3dca84be0e3d (diff) | |
download | mariadb-git-d716037e6ea6d6b0ff42ed9ad544529b0b37e261.tar.gz |
Modifications to MySQL source in order to make it compile on QnX.
config.guess:
Added detection for QNX.
config.sub:
Added detection for QNX.
include/m_ctype.h:
QNX already used some of the symbols, changed names.
include/my_global.h:
For QNX.
readline/vi_mode.c:
For 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 ;; |