浏览代码

libuv: automatically skip ifaddrs on Solaris 10

Brad King 8 年之前
父节点
当前提交
5651257fff
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      Utilities/cmlibuv/src/unix/sunos.c

+ 4 - 0
Utilities/cmlibuv/src/unix/sunos.c

@@ -28,6 +28,10 @@
 #include <assert.h>
 #include <errno.h>
 
+#if !defined(SUNOS_NO_IFADDRS) && _XOPEN_SOURCE < 600
+#define SUNOS_NO_IFADDRS
+#endif
+
 #ifndef SUNOS_NO_IFADDRS
 # include <ifaddrs.h>
 #endif