diff options
author | monty@mysql.com <> | 2004-05-25 22:00:14 +0300 |
---|---|---|
committer | monty@mysql.com <> | 2004-05-25 22:00:14 +0300 |
commit | f2e1e3ce4c72d383f16fd8c525b28c4912e8f2de (patch) | |
tree | 2c56473da947b9807f0d1668171870a8e3dbc736 /tools | |
parent | d14e4eb57c92b987152b255ec961b1e9103d8f66 (diff) | |
download | mariadb-git-f2e1e3ce4c72d383f16fd8c525b28c4912e8f2de.tar.gz |
Added patches from Novell
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 790a5d56b5a..27dfa18e421 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> @@ -1846,3 +1848,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__ */ + |