From 97f5547297cc61f447cc675cc64917c53a8a3994 Mon Sep 17 00:00:00 2001 From: "Marc G. Fournier" Date: Tue, 13 Oct 1998 14:12:22 +0000 Subject: [PATCH] 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... --- src/interfaces/libpq++/Makefile.in | 6 +++--- 1 file 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