mirror of
https://github.com/postgres/postgres.git
synced 2025-04-22 23:02:54 +03:00
Alpha spinlock fix from Uncle George <gatgul@voicenet.com>
This commit is contained in:
parent
f2f43efbe1
commit
66f66343f6
@ -4,7 +4,7 @@
|
|||||||
# Makefile for storage/ipc
|
# Makefile for storage/ipc
|
||||||
#
|
#
|
||||||
# IDENTIFICATION
|
# 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../..
|
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 \
|
OBJS = ipc.o ipci.o shmem.o shmqueue.o sinval.o \
|
||||||
sinvaladt.o spin.o
|
sinvaladt.o spin.o
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
# Makefile for utils/adt
|
# Makefile for utils/adt
|
||||||
#
|
#
|
||||||
# IDENTIFICATION
|
# IDENTIFICATION
|
||||||
# $Header: /cvsroot/pgsql/src/backend/utils/adt/Makefile,v 1.24 1999/07/20 16:48:55 momjian Exp $
|
# $Header: /cvsroot/pgsql/src/backend/utils/adt/Makefile,v 1.25 1999/07/22 18:30:08 momjian Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -13,7 +13,7 @@ include ../../../Makefile.global
|
|||||||
|
|
||||||
CFLAGS += -I../..
|
CFLAGS += -I../..
|
||||||
|
|
||||||
# seems to be required for some date/time stuff 07/19/1999 bjm
|
# seems to be required for some date/time stuff 1999/07/22 bjm
|
||||||
ifeq ($(CPU),alpha)
|
ifeq ($(CPU),alpha)
|
||||||
ifeq ($(CC), gcc)
|
ifeq ($(CC), gcc)
|
||||||
CFLAGS+= -mieee
|
CFLAGS+= -mieee
|
||||||
|
Loading…
x
Reference in New Issue
Block a user