ソースを参照

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