diff options
author | monty@mashka.mysql.fi <> | 2003-02-17 05:43:37 +0200 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-02-17 05:43:37 +0200 |
commit | 90bf0744383ea17fc783e405ea4faa2d4f06ae46 (patch) | |
tree | a3fbfddbae0d5a6e600e68942bb243fadb5269aa /extra | |
parent | 6ce8e1e7046df712f442ea96d568f5b21eeb5511 (diff) | |
parent | 6051b2f9988f1e317be41e49c64718cc610c1260 (diff) | |
download | mariadb-git-90bf0744383ea17fc783e405ea4faa2d4f06ae46.tar.gz |
Merge with 4.0.11 tree to get latest bug fixes
Diffstat (limited to 'extra')
-rw-r--r-- | extra/mysql_waitpid.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/extra/mysql_waitpid.c b/extra/mysql_waitpid.c index 007db959111..bff1752ec21 100644 --- a/extra/mysql_waitpid.c +++ b/extra/mysql_waitpid.c @@ -16,6 +16,8 @@ /* Wait until a program dies */ +#ifndef __NETWARE__ + #include <my_global.h> #include <m_string.h> #include <my_getopt.h> @@ -101,3 +103,15 @@ void usage(void) my_print_help(my_long_options); exit(-1); } + +#else + +#include <stdio.h> + +main() +{ + fprintf(stderr,"This tool has not been ported to NetWare\n"); + return 0; +} + +#endif /* __NETWARE__ */ |