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

Commit a1f14d3

Browse files
committed
Back out qnx plpgsql/Makefile change and move to src/Makefile.
1 parent f36fc7b commit a1f14d3

File tree

3 files changed

+10
-12
lines changed

3 files changed

+10
-12
lines changed

src/pl/plpgsql/Makefile

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,16 @@
44
#
55
# Copyright (c) 1994, Regents of the University of California
66
#
7-
# $Header: /cvsroot/pgsql/src/pl/plpgsql/Makefile,v 1.6 2001/05/24 15:53:34 momjian Exp $
7+
# $Header: /cvsroot/pgsql/src/pl/plpgsql/Makefile,v 1.7 2001/05/24 22:33:18 momjian Exp $
88
#
99
#-------------------------------------------------------------------------
1010

1111
subdir = src/pl/plpgsql
1212
top_builddir = ../../..
1313
include $(top_builddir)/src/Makefile.global
1414

15-
ifneq ($(PORTNAME), qnx4)
16-
1715
all install installdirs uninstall distprep:
1816
$(MAKE) -C src $@
1917

20-
else #qnx4
21-
22-
all install installdirs uninstall distprep:
23-
echo plpgsql not supported with QNX due to lack of shared library support
24-
25-
endif # qnx4
26-
2718
clean distclean maintainer-clean:
2819
-$(MAKE) -C src $@

src/pl/plpgsql/src/Makefile

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# Makefile for the plpgsql shared object
44
#
5-
# $Header: /cvsroot/pgsql/src/pl/plpgsql/src/Makefile,v 1.13 2001/04/04 21:15:56 tgl Exp $
5+
# $Header: /cvsroot/pgsql/src/pl/plpgsql/src/Makefile,v 1.14 2001/05/24 22:33:18 momjian Exp $
66
#
77
#-------------------------------------------------------------------------
88

@@ -21,7 +21,14 @@ override DLLLIBS := $(BE_DLLLIBS) $(DLLLIBS)
2121

2222
OBJS = pl_parse.o pl_handler.o pl_comp.o pl_exec.o pl_funcs.o
2323

24+
ifeq ($(PORTNAME), qnx4)
2425
all: all-lib
26+
else
27+
all:
28+
@echo "*****"; \
29+
echo "* PL/pgSQL was not built due to library manager problems."; \
30+
echo "*****"
31+
endif
2532

2633
# Shared library stuff
2734
include $(top_srcdir)/src/Makefile.shlib

src/template/qnx4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
CFLAGS=
1+
CFLAGS=-I/usr/local/include
22
LIBS=-lunix

0 commit comments

Comments
 (0)