diff options
author | monty@mashka.mysql.fi <> | 2003-02-17 02:14:37 +0200 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-02-17 02:14:37 +0200 |
commit | 6051b2f9988f1e317be41e49c64718cc610c1260 (patch) | |
tree | 49ba5df63376ec1ba88e54e1446b29a777bba1a9 /extra | |
parent | 153cefc61b15e182157ab7da9a14ab014c4f95de (diff) | |
download | mariadb-git-6051b2f9988f1e317be41e49c64718cc610c1260.tar.gz |
Fixed multi-table-delete for InnoDB tables
Novell patches
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__ */ |