diff options
author | Bruce Momjian | 2000-03-09 17:07:32 +0000 |
---|---|---|
committer | Bruce Momjian | 2000-03-09 17:07:32 +0000 |
commit | de62329acd2e19eaad11587aa1181c7593bafef9 (patch) | |
tree | 787ce4cd084ee51c702710890db803685710a29a | |
parent | 16ace63c6b89955777d7e55f84ac0c6e56ab854c (diff) |
Fix for bsdi 4.1 shared libraries.
-rw-r--r-- | src/Makefile.shlib | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.shlib b/src/Makefile.shlib index 441feec22a5..8a15538d880 100644 --- a/src/Makefile.shlib +++ b/src/Makefile.shlib @@ -6,7 +6,7 @@ # Copyright (c) 1998, Regents of the University of California # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/Makefile.shlib,v 1.18 2000/03/08 01:58:15 momjian Exp $ +# $Header: /cvsroot/pgsql/src/Makefile.shlib,v 1.19 2000/03/09 17:07:32 momjian Exp $ # #------------------------------------------------------------------------- @@ -82,7 +82,7 @@ ifeq ($(PORTNAME), bsdi) ifeq ($(DLSUFFIX), .so) install-shlib-dep := install-shlib shlib := lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION).$(SO_MINOR_VERSION) - LDFLAGS_SL += -shared + LDFLAGS_SL += -shared -soname $(shlib) CFLAGS += $(CFLAGS_SL) endif ifeq ($(DLSUFFIX), .o) |