From: Josef 'Jeff' Sipek Date: Sun, 6 Dec 2015 12:48:06 +0000 (-0500) Subject: devpollmplexer doesn't compile due to missing sigset_t X-Git-Tag: rec-3.7.4~8^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F3012%2Fhead;p=thirdparty%2Fpdns.git devpollmplexer doesn't compile due to missing sigset_t --- diff --git a/pdns/devpollmplexer.cc b/pdns/devpollmplexer.cc index 984a0493ee..a4774b9ad9 100644 --- a/pdns/devpollmplexer.cc +++ b/pdns/devpollmplexer.cc @@ -1,3 +1,8 @@ +/* + * NOTE: sys/devpoll.h relies on sigset_t being already defined so we need + * to include sys/signal.h *before* including sys/devpoll.h. + */ +#include #include #include "mplexer.hh" #include "sstuff.hh"