summaryrefslogtreecommitdiff
path: root/src/interfaces/libpq++
diff options
context:
space:
mode:
authorBruce Momjian1998-06-15 21:01:54 +0000
committerBruce Momjian1998-06-15 21:01:54 +0000
commita0f95aceb4963731644b8eed0308beac76e9934c (patch)
tree1f0cd244dbc7a2ee2b7c3951323db7f0dc15cb7c /src/interfaces/libpq++
parent56bdbe1f4cd87cfc788e1e786e7de8f6a0a0eacf (diff)
Fix portname defines in Makefiles.
Diffstat (limited to 'src/interfaces/libpq++')
-rw-r--r--src/interfaces/libpq++/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/interfaces/libpq++/Makefile b/src/interfaces/libpq++/Makefile
index 5b1d5cfbc5d..da16b32f506 100644
--- a/src/interfaces/libpq++/Makefile
+++ b/src/interfaces/libpq++/Makefile
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/Makefile,v 1.16 1998/04/06 16:52:36 momjian Exp $
+# $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/Makefile,v 1.17 1998/06/15 21:01:48 momjian Exp $
#
#-------------------------------------------------------------------------
@@ -42,16 +42,16 @@ OBJS = pgenv.o pgconnection.o pgtransdb.o pgcursordb.o pglobject.o
# Shared library stuff
SHLIB :=
INSTALL-SHLIB-DEP :=
-ifeq ($(PORTNAME), i386_solaris)
+ifeq ($(PORTNAME), linux_i386)
INSTALL-SHLIB-DEP := install-shlib
SHLIB := libpq++.so.1
- LDFLAGS_SL = -G -z text -shared -soname $(SHLIB)
+ LDFLAGS_SL = -shared -soname $(SHLIB)
CFLAGS += $(CFLAGS_SL)
endif
-ifeq ($(PORTNAME), linux)
+ifeq ($(PORTNAME), solaris_i386)
INSTALL-SHLIB-DEP := install-shlib
SHLIB := libpq++.so.1
- LDFLAGS_SL = -shared -soname $(SHLIB)
+ LDFLAGS_SL = -G -z text -shared -soname $(SHLIB)
CFLAGS += $(CFLAGS_SL)
endif
ifeq ($(PORTNAME), hpux)