From: Vadim Zeitlin Date: Fri, 11 Jun 1999 10:47:18 +0000 (+0000) Subject: IRIX compile fixes X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/55021f25ff19ab334c4b8bf8a90836856471cf99 IRIX compile fixes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2759 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/socket.cpp b/src/common/socket.cpp index 883ffb82eb..052078b3b4 100644 --- a/src/common/socket.cpp +++ b/src/common/socket.cpp @@ -35,6 +35,11 @@ typedef int socklen_t ; #include #include +// IRIX requires bstring.h be included to use select() +#ifdef sgi + #include +#endif // IRIX + // Not enough OS behaviour defined for wxStubs #ifndef __WXSTUBS__