diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-07-22 18:30:08 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-07-22 18:30:08 +0000 |
commit | 66f66343f67b4873b058f42c405b04465710c9fe (patch) | |
tree | 774ede315301f55c5889a646b721f5b363e74a8a /src/backend/storage/ipc | |
parent | f2f43efbe1d55dc1fbeec7b04d50514653c930fc (diff) | |
download | postgresql-66f66343f67b4873b058f42c405b04465710c9fe.tar.gz postgresql-66f66343f67b4873b058f42c405b04465710c9fe.zip |
Alpha spinlock fix from Uncle George <gatgul@voicenet.com>
Diffstat (limited to 'src/backend/storage/ipc')
-rw-r--r-- | src/backend/storage/ipc/Makefile | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/backend/storage/ipc/Makefile b/src/backend/storage/ipc/Makefile index 8bd303c0a62..340f70d3c88 100644 --- a/src/backend/storage/ipc/Makefile +++ b/src/backend/storage/ipc/Makefile @@ -4,7 +4,7 @@ # Makefile for storage/ipc # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/backend/storage/ipc/Makefile,v 1.7 1998/04/06 00:25:14 momjian Exp $ +# $Header: /cvsroot/pgsql/src/backend/storage/ipc/Makefile,v 1.8 1999/07/22 18:30:07 momjian Exp $ # #------------------------------------------------------------------------- @@ -13,6 +13,16 @@ include ../../../Makefile.global CFLAGS += -I../.. +# seems to be required 1999/07/22 bjm +ifeq ($(CPU),alpha) +ifeq ($(CC), gcc) +CFLAGS+= -fno-inline +endif +ifeq ($(CC), egcs) +CFLAGS+= -fno-inline +endif +endif + OBJS = ipc.o ipci.o shmem.o shmqueue.o sinval.o \ sinvaladt.o spin.o |