aboutsummaryrefslogtreecommitdiff
path: root/src/backend/storage/ipc/ipci.c
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-11-06 06:52:23 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-11-06 06:52:23 +0000
commitce4c0ce1dec3f34dbbc812a49026f70003a63d18 (patch)
treea45e10088e6d6fa41c7050b0824675378dec7b0f /src/backend/storage/ipc/ipci.c
parente4725ee76a3fcdf40548c93badc4a8f679a953bb (diff)
downloadpostgresql-ce4c0ce1dec3f34dbbc812a49026f70003a63d18.tar.gz
postgresql-ce4c0ce1dec3f34dbbc812a49026f70003a63d18.zip
Some compile failure fixes from Keith Parks <emkxp01@mtcc.demon.co.uk>
Diffstat (limited to 'src/backend/storage/ipc/ipci.c')
-rw-r--r--src/backend/storage/ipc/ipci.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/backend/storage/ipc/ipci.c b/src/backend/storage/ipc/ipci.c
index 6566657f417..70c73f14c56 100644
--- a/src/backend/storage/ipc/ipci.c
+++ b/src/backend/storage/ipc/ipci.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipci.c,v 1.2 1996/11/03 05:06:55 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipci.c,v 1.3 1996/11/06 06:49:03 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@@ -22,6 +22,11 @@
#include "storage/lock.h"
#include "miscadmin.h" /* for DebugLvl */
+#if defined(sparc_solaris)
+#include <string.h>
+#include <sys/ipc.h>
+#endif
+
/*
* SystemPortAddressCreateMemoryKey --
* Returns a memory key given a port address.