From: Nick Mathewson Date: Tue, 29 Dec 2009 19:38:35 +0000 (-0500) Subject: Add missing thread imports so that evport.c will build X-Git-Tag: release-2.0.5-beta~97^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8111fac0650c6e4dbb296dfc8f63453e4532f30b;p=libevent Add missing thread imports so that evport.c will build When I made the changes to release the base lock around the call to port_getn(), I didn't add evthread-internal.h to the includes in evport.c would build, and I didn't catch it since I haven't got a Solaris host to build on. Tao Feng just reported this on Libevent-users. --- diff --git a/evport.c b/evport.c index 1baac621..a203d8ae 100644 --- a/evport.c +++ b/evport.c @@ -64,6 +64,9 @@ #include #include +#include + +#include "evthread-internal.h" #include "event-internal.h" #include "log-internal.h" #include "evsignal-internal.h"