- include sys/time.h for new shm code on OpenBSD.

git-svn-id: file:///svn/unbound/trunk@4025 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
Wouter Wijngaards 2017-02-24 15:51:19 +00:00
parent 0fff8a32b5
commit 5f48fa3a6e
2 changed files with 8 additions and 5 deletions

View file

@ -1,3 +1,6 @@
24 February 2017: Wouter
- include sys/time.h for new shm code on OpenBSD.
23 February 2017: Wouter
- Fix doc/CNAME-basedRedirectionDesignNotes.pdf zone static to
redirect.

View file

@ -40,17 +40,17 @@
*/
#include "config.h"
#include "shm_main.h"
#include <ctype.h>
#include <stdarg.h>
#ifdef HAVE_SYS_IPC_H
#include "sys/ipc.h"
#include <sys/ipc.h>
#endif
#ifdef HAVE_SYS_SHM_H
#include "sys/shm.h"
#include <sys/shm.h>
#endif
#include "errno.h"
#include "config.h"
#include <sys/time.h>
#include <errno.h>
#include "shm_main.h"
#include "daemon/daemon.h"
#include "daemon/worker.h"
#include "daemon/stats.h"