mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-23 16:20:26 -05:00
- 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:
parent
0fff8a32b5
commit
5f48fa3a6e
2 changed files with 8 additions and 5 deletions
|
|
@ -1,3 +1,6 @@
|
||||||
|
24 February 2017: Wouter
|
||||||
|
- include sys/time.h for new shm code on OpenBSD.
|
||||||
|
|
||||||
23 February 2017: Wouter
|
23 February 2017: Wouter
|
||||||
- Fix doc/CNAME-basedRedirectionDesignNotes.pdf zone static to
|
- Fix doc/CNAME-basedRedirectionDesignNotes.pdf zone static to
|
||||||
redirect.
|
redirect.
|
||||||
|
|
|
||||||
|
|
@ -40,17 +40,17 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "shm_main.h"
|
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
#ifdef HAVE_SYS_IPC_H
|
#ifdef HAVE_SYS_IPC_H
|
||||||
#include "sys/ipc.h"
|
#include <sys/ipc.h>
|
||||||
#endif
|
#endif
|
||||||
#ifdef HAVE_SYS_SHM_H
|
#ifdef HAVE_SYS_SHM_H
|
||||||
#include "sys/shm.h"
|
#include <sys/shm.h>
|
||||||
#endif
|
#endif
|
||||||
#include "errno.h"
|
#include <sys/time.h>
|
||||||
#include "config.h"
|
#include <errno.h>
|
||||||
|
#include "shm_main.h"
|
||||||
#include "daemon/daemon.h"
|
#include "daemon/daemon.h"
|
||||||
#include "daemon/worker.h"
|
#include "daemon/worker.h"
|
||||||
#include "daemon/stats.h"
|
#include "daemon/stats.h"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue