summaryrefslogtreecommitdiff
path: root/src/pl
diff options
context:
space:
mode:
authorBruce Momjian1998-10-12 01:04:02 +0000
committerBruce Momjian1998-10-12 01:04:02 +0000
commit66f893f3fe8a41c6c758b24905058c857c039045 (patch)
tree156bf2f81716fe7d54cdae0388e5b6accb474641 /src/pl
parentbeac8c1c4609eb7dcb24e5352c66f3b70682d331 (diff)
Solaris shared library fixes.
Diffstat (limited to 'src/pl')
-rw-r--r--src/pl/plpgsql/src/Makefile.in9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/pl/plpgsql/src/Makefile.in b/src/pl/plpgsql/src/Makefile.in
index aad3dcb0b44..cca844c08f9 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.5 1998/10/09 16:57:07 momjian Exp $
+# $Header: /cvsroot/pgsql/src/pl/plpgsql/src/Attic/Makefile.in,v 1.6 1998/10/12 01:04:02 momjian Exp $
#
#-------------------------------------------------------------------------
@@ -54,11 +54,16 @@ ifeq ($(PORTNAME), bsdi)
endif
endif
-ifeq ($(PORTNAME), solaris)
+ifeq ($(PORTNAME), solaris_sparc)
LDFLAGS_SL := -G -z text
CFLAGS += $(CFLAGS_SL)
endif
+ifeq ($(PORTNAME), solaris_i386)
+ LDFLAGS_SL := -G
+ CFLAGS += $(CFLAGS_SL)
+endif
+
ifeq ($(PORTNAME), unixware)
LDFLAGS_SL := -G -z text
CFLAGS += $(CFLAGS_SL)