diff options
author | Marc G. Fournier <scrappy@hub.org> | 1998-02-13 05:10:06 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1998-02-13 05:10:06 +0000 |
commit | 64e7adb07b252ba4b6d6990bf6dad2105e072105 (patch) | |
tree | d5942287e79818d0d1bdf31b8167f040b7d7246b /src/interfaces/libpgtcl | |
parent | e3f222466498260a97b2559d539398bad9e6ccff (diff) |
From: Tom I Helbekkmo <tih@Hamartun.Priv.NO>
Apart from this Makefile hack, all I've done is to make dynamically
loaded code modules fail properly (as was already done for __mips__,
although I think this is too loose: I believe NetBSD for the pmax can
do dynamic linking), and to add test-and-set lock handling. As Bruce
suggested, this is done in a maximally efficient inlined way: I was
not aware that this code was so important, speed-wise.
Diffstat (limited to 'src/interfaces/libpgtcl')
-rw-r--r-- | src/interfaces/libpgtcl/Makefile.in | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/interfaces/libpgtcl/Makefile.in b/src/interfaces/libpgtcl/Makefile.in index 0552736518b..0905a8a7227 100644 --- a/src/interfaces/libpgtcl/Makefile.in +++ b/src/interfaces/libpgtcl/Makefile.in @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile.in,v 1.2 1998/01/17 23:33:32 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile.in,v 1.3 1998/02/13 05:09:57 scrappy Exp $ # #------------------------------------------------------------------------- @@ -42,10 +42,12 @@ ifeq ($(PORTNAME), linux) endif ifeq ($(PORTNAME), bsd) - install-shlib-dep := install-shlib - shlib := libpgtcl.so.1.0 - LDFLAGS_SL = -x -Bshareable -Bforcearchive - CFLAGS += $(CFLAGS_SL) + ifdef BSD_SHLIB + install-shlib-dep := install-shlib + shlib := libpgtcl.so.1.0 + LDFLAGS_SL = -x -Bshareable -Bforcearchive + CFLAGS += $(CFLAGS_SL) + endif endif ifeq ($(PORTNAME), i386_solaris) |