]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix compile on OpenBSD 4.4-current. Bugfix on 0.2.1.5-alpha.
authorRoger Dingledine <arma@torproject.org>
Mon, 1 Sep 2008 08:01:22 +0000 (08:01 +0000)
committerRoger Dingledine <arma@torproject.org>
Mon, 1 Sep 2008 08:01:22 +0000 (08:01 +0000)
Reported by Tas.

svn:r16713

ChangeLog
src/common/compat.h
src/common/container.c

index 87c2fa86697dca9ab3500f8a95ad8b32f042307b..729a2d023a2033d231c551483ea61bf5003e48c7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Changes in version 0.2.1.6-alpha - 2008-09-xx
+  o Minor bugfixes:
+    - Fix compile on OpenBSD 4.4-current. Bugfix on 0.2.1.5-alpha.
+      Reported by Tas.
+
+
 Changes in version 0.2.1.5-alpha - 2008-08-31
   o Major features:
     - Convert many internal address representations to optionally hold
index 311818cb77101ee867b85bc6021f0d9686c9ab7b..a0f614f55e4092ab7cb01ff449e3de347067c127 100644 (file)
@@ -36,6 +36,9 @@
 #ifdef HAVE_CTYPE_H
 #include <ctype.h>
 #endif
+#ifdef HAVE_PTHREAD_H
+#include <pthread.h>
+#endif
 #include <stdarg.h>
 #ifdef HAVE_SYS_RESOURCE_H
 #include <sys/resource.h>
index ffb4ffe497f6f0d71b4565cd9e81f27610933031..908bc9485e0314f148b6d274e434083606eb033c 100644 (file)
@@ -14,6 +14,7 @@ const char container_c_id[] =
  * a digest-to-void* map.
  **/
 
+#include "orconfig.h"
 #include "compat.h"
 #include "util.h"
 #include "log.h"