diff options
Diffstat (limited to 'src/interfaces')
-rw-r--r-- | src/interfaces/libpgtcl/Makefile.in | 9 | ||||
-rw-r--r-- | src/interfaces/libpq++/Makefile | 16 | ||||
-rw-r--r-- | src/interfaces/libpq/Makefile.in | 11 |
3 files changed, 32 insertions, 4 deletions
diff --git a/src/interfaces/libpgtcl/Makefile.in b/src/interfaces/libpgtcl/Makefile.in index 2823aeade13..705ff0b9e57 100644 --- a/src/interfaces/libpgtcl/Makefile.in +++ b/src/interfaces/libpgtcl/Makefile.in @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile.in,v 1.19 1998/07/12 18:48:05 momjian Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile.in,v 1.20 1998/08/22 04:24:26 momjian Exp $ # #------------------------------------------------------------------------- @@ -66,6 +66,13 @@ ifeq ($(PORTNAME), solaris) CFLAGS += $(CFLAGS_SL) endif +ifeq ($(PORTNAME), unixware) + install-shlib-dep := install-shlib + shlib := libpgtcl.so.1 + LDFLAGS_SL = -G -z text + CFLAGS += $(CFLAGS_SL) +endif + ifeq ($(PORTNAME), univel) install-shlib-dep := install-shlib shlib := libpgtcl.so.1 diff --git a/src/interfaces/libpq++/Makefile b/src/interfaces/libpq++/Makefile index fb619a90d31..9ccbe946578 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.19 1998/07/12 19:20:45 momjian Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/Makefile,v 1.20 1998/08/22 04:24:35 momjian Exp $ # #------------------------------------------------------------------------- @@ -56,6 +56,20 @@ ifeq ($(PORTNAME), solaris) CFLAGS += $(CFLAGS_SL) endif +ifeq ($(PORTNAME), unixware) + install-shlib-dep := install-shlib + shlib := libpq.so.1 + LDFLAGS_SL = -G -z text + CFLAGS += $(CFLAGS_SL) +endif + +ifeq ($(PORTNAME), univel) + install-shlib-dep := install-shlib + shlib := libpq.so.1 + LDFLAGS_SL = -G -z text + CFLAGS += $(CFLAGS_SL) +endif + ifeq ($(PORTNAME), hpux) install-shlib-dep := install-shlib shlib := libpq.sl diff --git a/src/interfaces/libpq/Makefile.in b/src/interfaces/libpq/Makefile.in index b13e7753c17..11c37624731 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.26 1998/08/17 03:50:29 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/libpq/Attic/Makefile.in,v 1.27 1998/08/22 04:24:28 momjian Exp $ # #------------------------------------------------------------------------- @@ -73,9 +73,16 @@ ifeq ($(PORTNAME), solaris) CFLAGS += $(CFLAGS_SL) endif +ifeq ($(PORTNAME), unixware) + install-shlib-dep := install-shlib + shlib := libpq.so.$(SO_MAJOR_VERSION).$(SO_MINOR_VERSION) + LDFLAGS_SL = -G -z text + CFLAGS += $(CFLAGS_SL) +endif + ifeq ($(PORTNAME), univel) install-shlib-dep := install-shlib - shlib := libpq.so.1 + shlib := libpq.so.$(SO_MAJOR_VERSION).$(SO_MINOR_VERSION) LDFLAGS_SL = -G -z text CFLAGS += $(CFLAGS_SL) endif |