summaryrefslogtreecommitdiff
path: root/src/pl
diff options
context:
space:
mode:
authorBruce Momjian1998-10-09 03:08:00 +0000
committerBruce Momjian1998-10-09 03:08:00 +0000
commitaf45dab6d7601890d87287cbafafca84906919a3 (patch)
treebe0c968a4798286ec560f9256c513b259208bac9 /src/pl
parent76392f8cc4f1ec559c228b3e717510eb88855a60 (diff)
Fix for BSDI shared libraries.
Diffstat (limited to 'src/pl')
-rw-r--r--src/pl/plpgsql/src/Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pl/plpgsql/src/Makefile.in b/src/pl/plpgsql/src/Makefile.in
index 95cdc6d13fc..cb7b5623cb8 100644
--- a/src/pl/plpgsql/src/Makefile.in
+++ b/src/pl/plpgsql/src/Makefile.in
@@ -4,7 +4,7 @@
# Makefile for the plpgsql shared object
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/pl/plpgsql/src/Attic/Makefile.in,v 1.1 1998/10/08 23:45:17 momjian Exp $
+# $Header: /cvsroot/pgsql/src/pl/plpgsql/src/Attic/Makefile.in,v 1.2 1998/10/09 03:08:00 momjian Exp $
#
#-------------------------------------------------------------------------
@@ -42,12 +42,12 @@ endif
ifeq ($(PORTNAME), bsdi)
ifdef BSD_SHLIB
- ifeq ($(LDSUFFIX), .so)
+ ifeq ($(DLSUFFIX), .so)
LD := shlicc
LDFLAGS_SL += -O -shared
CFLAGS += $(CFLAGS_SL)
endif
- ifeq ($(LDSUFFIX), .o)
+ ifeq ($(DLSUFFIX), .o)
LD := shlicc
LDFLAGS_SL += -O -r
CFLAGS += $(CFLAGS_SL)