blob: c527504b55c00d05b2f725bd61e955a7edddd266 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
$NetBSD: patch-ag,v 1.1.1.1 2010/10/30 12:12:35 obache Exp $
--- imtest/imtest.c.orig 2010-10-19 03:08:28.000000000 +0000
+++ imtest/imtest.c
@@ -49,7 +49,9 @@
#include <sys/time.h>
#include <sys/types.h>
#include <sys/ipc.h>
+#if !defined(__APPLE__)
#include <sys/msg.h>
+#endif
#include <sys/stat.h>
#include <fcntl.h>
@@ -74,6 +76,10 @@
#include <netinet/in.h>
#include <netdb.h>
+#ifdef HAVE_SYS_PARAM_H
+#include <sys/param.h>
+#endif
+
#include <sasl/sasl.h>
#include <sasl/saslutil.h>
|