瀏覽代碼

define INADDR_NONE so we compile on solaris

svn:r1295
Roger Dingledine 20 年之前
父節點
當前提交
7648c6c0ea
共有 1 個文件被更改,包括 6 次插入0 次删除
  1. 6 0
      src/common/util.c

+ 6 - 0
src/common/util.c

@@ -8,6 +8,12 @@
 #include <sys/utsname.h>
 #endif
 
+/* used by inet_addr, not defined on solaris anywhere!? */
+#ifndef INADDR_NONE
+#define INADDR_NONE ((unsigned long) -1)
+#endif
+
+/* in-line the strl functions */
 #ifndef HAVE_STRLCPY
 #include "strlcpy.c"
 #endif