- (djm) [monitor_fdpass.c] Use sys/poll.h if poll.h doesn't exist;

bz#2237
This commit is contained in:
Damien Miller 2014-07-03 13:29:50 +10:00
Родитель 8da0fa2493
Коммит 9eb4cd9a32
2 изменённых файлов: 10 добавлений и 3 удалений

Просмотреть файл

@ -1,6 +1,8 @@
20140703
- (djm) [digest-openssl.c configure.ac] Disable RIPEMD160 if libcrypto
doesn't support it.
- (djm) [monitor_fdpass.c] Use sys/poll.h if poll.h doesn't exist;
bz#2237
20140702
- OpenBSD CVS Sync

Просмотреть файл

@ -34,12 +34,17 @@
#endif
#include <errno.h>
#ifdef HAVE_POLL_H
#include <poll.h>
#endif
#include <string.h>
#include <stdarg.h>
#ifdef HAVE_POLL_H
# include <poll.h>
#else
# ifdef HAVE_SYS_POLL_H
# include <sys/poll.h>
# endif
#endif
#include "log.h"
#include "monitor_fdpass.h"