X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1539bf2744fe65187dfe473ef0787fff32fcd0df..b9160e5eacd78ddb4c1aa613b4c5b9773328d300:/src/unix/gsocket.cpp diff --git a/src/unix/gsocket.cpp b/src/unix/gsocket.cpp index 28e293681c..aeed5804a5 100644 --- a/src/unix/gsocket.cpp +++ b/src/unix/gsocket.cpp @@ -101,6 +101,9 @@ int _System soclose(int); #ifdef sgi # include #endif +#ifdef _AIX +# include +#endif #include #ifndef SOCKLEN_T @@ -123,6 +126,16 @@ int _System soclose(int); #define SOCKOPTLEN_T SOCKLEN_T #endif +/* + * OSX 10.2 has int args instead of SOCKLENXXX_T + */ +#if defined( __WXMAC__ ) && ( MAC_OS_X_VERSION_MAX_ALLOWED <= MAC_OS_X_VERSION_10_2 ) +#undef SOCKOPTLEN_T +#undef SOCKLEN_T +#define SOCKOPTLEN_T int +#define SOCKLEN_T int +#endif + /* * MSW defines this, Unices don't. */