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.
This commit is contained in:
unknown 2002-03-13 01:28:13 +02:00
commit d716037e6e
5 changed files with 54 additions and 19 deletions

9
config.guess vendored
View file

@ -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 ;;