]> git.saurik.com Git - wxWidgets.git/commitdiff
IRIX compile fixes
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 11 Jun 1999 10:47:18 +0000 (10:47 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 11 Jun 1999 10:47:18 +0000 (10:47 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2759 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/socket.cpp

index 883ffb82eb39de2d1139072c4f3f43303d1094ef..052078b3b48ae5951831dce65d57556e85c69eec 100644 (file)
@@ -35,6 +35,11 @@ typedef int socklen_t ;
 #include <wx/timer.h>
 #include <wx/utils.h>
 
+// IRIX requires bstring.h be included to use select()
+#ifdef sgi
+    #include <bstring.h>
+#endif // IRIX
+
 // Not enough OS behaviour defined for wxStubs
 #ifndef __WXSTUBS__