summaryrefslogtreecommitdiff
path: root/config.guess
diff options
context:
space:
mode:
authorunknown <jani@hynda.mysql.fi>2002-03-13 01:28:13 +0200
committerunknown <jani@hynda.mysql.fi>2002-03-13 01:28:13 +0200
commitd716037e6ea6d6b0ff42ed9ad544529b0b37e261 (patch)
tree85df10184368163650d096e55e2c9127a0c3e769 /config.guess
parent0e43a70453321aac082c4c44665b3dca84be0e3d (diff)
downloadmariadb-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-xconfig.guess9
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 ;;