From e06da92b377111a3c2931cf693ce14c40b054672 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 28 Oct 1997 14:22:50 +0000 Subject: define USE_SYSV_IPC on a bunch more systems. Needs some testing though. (This used to be commit 8f2366e57d29458f2bb63d9a0033de5c730a1b94) --- source3/include/includes.h | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) (limited to 'source3') diff --git a/source3/include/includes.h b/source3/include/includes.h index 91a2ec5c67..6f3450c4fd 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -214,9 +214,6 @@ Here come some platform specific sections #include #include #include -#include -#include -#include #include #ifndef NO_ASMSIGNALH #include @@ -297,9 +294,6 @@ typedef unsigned short mode_t; #include #include #include -#include -#include -#include #include #include #include @@ -362,6 +356,7 @@ char *getwd(char *); #define USE_WAITPID #define USE_DIRECT #define USE_SETSID +#define USE_SYSV_IPC #endif #if defined(SGI5) || defined(SGI6) @@ -382,6 +377,7 @@ char *getwd(char *); #define USE_STATVFS #define USE_WAITPID #define USE_SETSID +#define USE_SYSV_IPC #endif @@ -438,6 +434,7 @@ extern struct passwd *getpwnam(); #define USE_STATVFS #define USE_GETCWD #define USE_SETSID +#define USE_SYSV_IPC #endif @@ -556,9 +553,6 @@ char *mktemp(char *); /* No standard include */ #include #include #include -#include -#include -#include #ifdef HPUX_10_TRUSTED #include #include @@ -1077,6 +1071,11 @@ struct spwd { /* fake shadow password structure */ #endif #endif +#ifdef USE_SYSV_IPC +#include +#include +#include +#endif #ifdef AFS_AUTH #include -- cgit