diff options
Diffstat (limited to 'src/include/storage/ipc.h')
-rw-r--r-- | src/include/storage/ipc.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/include/storage/ipc.h b/src/include/storage/ipc.h index 85dfe03ceb1..04cd86d3cb4 100644 --- a/src/include/storage/ipc.h +++ b/src/include/storage/ipc.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: ipc.h,v 1.40 2000/10/02 19:42:56 petere Exp $ + * $Id: ipc.h,v 1.41 2000/10/03 03:11:24 momjian Exp $ * * NOTES * This file is very architecture-specific. This stuff should actually @@ -27,7 +27,14 @@ #include <sys/types.h> #ifdef HAVE_SYS_IPC_H #include <sys/ipc.h> /* For IPC_PRIVATE */ -#endif +#else +/* BeOS doesn't have IPC_PRIVATE so we'll use the value that is set by + * FreeBSD (1) + */ +#define IPC_PRIVATE 1 +#endif /* HAVE_SYS_IPC_H */ + +#include "config.h" #ifndef HAVE_UNION_SEMUN union semun |