aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1998-10-13 14:12:22 +0000
committerMarc G. Fournier <scrappy@hub.org>1998-10-13 14:12:22 +0000
commit97f5547297cc61f447cc675cc64917c53a8a3994 (patch)
treeaeed9da662300a72a448b2bd7b38d1f297e2d182
parentfbcda7b4a7dc7737ceee57869337727318e25131 (diff)
downloadpostgresql-97f5547297cc61f447cc675cc64917c53a8a3994.tar.gz
postgresql-97f5547297cc61f447cc675cc64917c53a8a3994.zip
Remove the -soname ${SHLIB} from solaris_{sparc,x86} as they conflict
with the -o $@ used in the ${SHLIB} directive, causing a failure for *at least* gcc2.8.1 + Solaris 2.6 under both hardware platforms...
-rw-r--r--src/interfaces/libpq++/Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interfaces/libpq++/Makefile.in b/src/interfaces/libpq++/Makefile.in
index 5e6422c411f..dcd50fbd2ab 100644
--- a/src/interfaces/libpq++/Makefile.in
+++ b/src/interfaces/libpq++/Makefile.in
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/Makefile.in,v 1.7 1998/10/12 01:23:27 momjian Exp $
+# $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/Makefile.in,v 1.8 1998/10/13 14:12:22 scrappy Exp $
#
#-------------------------------------------------------------------------
@@ -60,14 +60,14 @@ endif
ifeq ($(PORTNAME), solaris_sparc)
INSTALL-SHLIB-DEP := install-shlib
SHLIB := libpq++.so.1
- LDFLAGS_SL = -G -shared -soname $(SHLIB)
+ LDFLAGS_SL = -G -shared
CFLAGS += $(CFLAGS_SL)
endif
ifeq ($(PORTNAME), solaris_i386)
INSTALL-SHLIB-DEP := install-shlib
SHLIB := libpq++.so.1
- LDFLAGS_SL = -G -shared -soname $(SHLIB)
+ LDFLAGS_SL = -G -shared
CFLAGS += $(CFLAGS_SL)
endif