mirror of
https://github.com/pocoproject/poco.git
synced 2025-03-26 00:20:34 +01:00
Add typedef ulong needed by MySQL/my_global.h
Add typedef ulong needed by MySQL/my_global.h but invisible on Cygwin with defined constant XOPEN_SOURCE=500
This commit is contained in:
parent
2a9dffc5d8
commit
d194e570dc
@ -35,6 +35,12 @@
|
|||||||
#define HAVE_STRUCT_TIMESPEC
|
#define HAVE_STRUCT_TIMESPEC
|
||||||
#endif
|
#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 <my_global.h>
|
||||||
#include <mysql.h>
|
#include <mysql.h>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user