OSDN Git Service

Remove the -soname ${SHLIB} from solaris_{sparc,x86} as they conflict
authorMarc G. Fournier <scrappy@hub.org>
Tue, 13 Oct 1998 14:12:22 +0000 (14:12 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Tue, 13 Oct 1998 14:12:22 +0000 (14:12 +0000)
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

index 5e6422c..dcd50fb 100644 (file)
@@ -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