Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 97f5547

Browse files
committed
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...
1 parent fbcda7b commit 97f5547

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/interfaces/libpq++/Makefile.in

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#
88
#
99
# IDENTIFICATION
10-
# $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/Makefile.in,v 1.7 1998/10/12 01:23:27 momjian Exp $
10+
# $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/Makefile.in,v 1.8 1998/10/13 14:12:22 scrappy Exp $
1111
#
1212
#-------------------------------------------------------------------------
1313

@@ -60,14 +60,14 @@ endif
6060
ifeq ($(PORTNAME), solaris_sparc)
6161
INSTALL-SHLIB-DEP := install-shlib
6262
SHLIB := libpq++.so.1
63-
LDFLAGS_SL = -G -shared -soname $(SHLIB)
63+
LDFLAGS_SL = -G -shared
6464
CFLAGS += $(CFLAGS_SL)
6565
endif
6666

6767
ifeq ($(PORTNAME), solaris_i386)
6868
INSTALL-SHLIB-DEP := install-shlib
6969
SHLIB := libpq++.so.1
70-
LDFLAGS_SL = -G -shared -soname $(SHLIB)
70+
LDFLAGS_SL = -G -shared
7171
CFLAGS += $(CFLAGS_SL)
7272
endif
7373

0 commit comments

Comments
 (0)