diff options
author | monty@mysql.com <> | 2004-05-25 22:54:00 +0300 |
---|---|---|
committer | monty@mysql.com <> | 2004-05-25 22:54:00 +0300 |
commit | 390d9898f9adb21c9794b8161749d8e3fcab7820 (patch) | |
tree | b258dbd41e0b45f70adf8c42ee94cce74cd0232f /tools | |
parent | 96b6f0a68661a62ba4c92620dac457ad39fc6f0d (diff) | |
parent | 2397f7081af8d5b42b6ec124e68e5279dae2f05a (diff) | |
download | mariadb-git-390d9898f9adb21c9794b8161749d8e3fcab7820.tar.gz |
merge with 4.0 to get Netware patches and fixes for libmysqld.dll
Diffstat (limited to 'tools')
-rw-r--r-- | tools/mysqlmanager.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tools/mysqlmanager.c b/tools/mysqlmanager.c index f1efd3be3eb..2e9f980bb5d 100644 --- a/tools/mysqlmanager.c +++ b/tools/mysqlmanager.c @@ -21,6 +21,8 @@ Sasha Pachev <sasha@mysql.com> */ +#ifndef __NETWARE__ + #include <my_global.h> #include <my_pthread.h> #include <mysql.h> @@ -1850,3 +1852,16 @@ int main(int argc, char** argv) else return daemonize(); } + +#else + +#include <stdio.h> + +int main(void) +{ + fprintf(stderr,"This tool has not been ported to NetWare\n"); + return 0; +} + +#endif /* __NETWARE__ */ + |