Compilation fix for Watcom (on OS/2).
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50046 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1221,4 +1221,13 @@
|
|||||||
|
|
||||||
/* --- end common options --- */
|
/* --- end common options --- */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Unix-specific options
|
||||||
|
*/
|
||||||
|
#define wxUSE_SELECT_DISPATCHER 1
|
||||||
|
#define wxUSE_EPOLL_DISPATCHER 0
|
||||||
|
|
||||||
|
#define wxUSE_UNICODE_UTF8 0
|
||||||
|
#define wxUSE_UTF8_LOCALE_ONLY 0
|
||||||
|
|
||||||
#endif // _WX_SETUP_H_
|
#endif // _WX_SETUP_H_
|
||||||
|
@@ -15,7 +15,13 @@
|
|||||||
|
|
||||||
#if wxUSE_SELECT_DISPATCHER
|
#if wxUSE_SELECT_DISPATCHER
|
||||||
|
|
||||||
#include <sys/types.h>
|
#ifdef __WATCOMC__
|
||||||
|
#include <types.h>
|
||||||
|
#include <sys/ioctl.h>
|
||||||
|
#include <sys/select.h>
|
||||||
|
#else
|
||||||
|
#include <sys/types.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "wx/private/fdiodispatcher.h"
|
#include "wx/private/fdiodispatcher.h"
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user