]> git.saurik.com Git - wxWidgets.git/commitdiff
Always include sys/time.h and sys/select.h from selectdispatcher.h.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 20 Mar 2010 12:45:28 +0000 (12:45 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 20 Mar 2010 12:45:28 +0000 (12:45 +0000)
fd_set used by this header is supposed to be defined in sys/select.h and not
including this header resulted in compilation problems under QNX. And
including sys/time.h shouldn't hurt and is needed by select() under many
systems anyhow.

See #11817.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63716 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/private/selectdispatcher.h
src/common/selectdispatcher.cpp

index 1dc1ed290fd891e75b64292b77ffd6c897e952bd..5c17fe650e68728d036ac8a8216870321fecb1e3 100644 (file)
 
 #if wxUSE_SELECT_DISPATCHER
 
 
 #if wxUSE_SELECT_DISPATCHER
 
+#if defined(HAVE_SYS_SELECT_H) || defined(__WATCOMC__)
+    #include <sys/time.h>
+    #include <sys/select.h>
+#endif
+
 #ifdef __WATCOMC__
 #ifdef __WATCOMC__
-  #include <types.h>
-  #include <sys/ioctl.h>
-  #include <sys/time.h>
-  #include <sys/select.h>
-  #include <tcpustd.h>
+    #include <types.h>
+    #include <sys/ioctl.h>
+    #include <tcpustd.h>
 #else
 #else
-  #include <sys/types.h>
+    #include <sys/types.h>
 #endif
 
 #include "wx/private/fdiodispatcher.h"
 #endif
 
 #include "wx/private/fdiodispatcher.h"
index 579de5c887c9e3a9b079a8ac6176619cc888432a..dca9adec8577978f6f953651a5ad042099649f75 100644 (file)
     #include "wx/intl.h"
 #endif
 
     #include "wx/intl.h"
 #endif
 
-#if defined(HAVE_SYS_SELECT_H) || defined(__WATCOMC__)
-    #include <sys/time.h>
-    #include <sys/select.h>
-#endif
-
 #include <errno.h>
 
 #define wxSelectDispatcher_Trace wxT("selectdispatcher")
 #include <errno.h>
 
 #define wxSelectDispatcher_Trace wxT("selectdispatcher")