1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Added patches from Novell

This commit is contained in:
monty@mysql.com
2004-05-25 22:00:14 +03:00
parent d14e4eb57c
commit f2e1e3ce4c
45 changed files with 780 additions and 126 deletions

View File

@ -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__ */