Merge pull request #1374 from zosrothko/patch-4

Add typedef ulong needed by MySQL/my_global.h
This commit is contained in:
Günter Obiltschnig 2016-08-30 17:13:42 +02:00 committed by GitHub
commit 10e60d649e

View File

@ -35,6 +35,12 @@
#define HAVE_STRUCT_TIMESPEC
#endif
#if (POCO_OS == POCO_OS_CYGWIN)
typedef unsigned short ushort; /* System V compatibility */
typedef unsigned int uint; /* System V compatibility */
typedef unsigned long ulong; /* System V compatibility */
#endif
#include <my_global.h>
#include <mysql.h>