summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2001-08-30 07:11:42 +0200
committerWilliam A. Rowe Jr <wrowe@apache.org>2001-08-30 07:11:42 +0200
commit9e5e70158182460b87025633b808695422e08708 (patch)
treec814df9debaf9ab142f7a0f13b2e2a8cee93799e
parent Changed syntax of Set{Input|Output}Filter. The list of filters (diff)
downloadapache2-9e5e70158182460b87025633b808695422e08708.tar.xz
apache2-9e5e70158182460b87025633b808695422e08708.zip
No <sys/ipc.h> under cygwin.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90800 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--os/unix/unixd.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/os/unix/unixd.h b/os/unix/unixd.h
index f6447a17b5..e81b0970b1 100644
--- a/os/unix/unixd.h
+++ b/os/unix/unixd.h
@@ -73,8 +73,12 @@
#include <pwd.h>
#include <grp.h>
+#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
+#endif
+#ifdef HAVE_SYS_IPC_H
#include <sys/ipc.h>
+#endif
typedef struct {
uid_t uid;