From: Peter Eisentraut Date: Thu, 14 Dec 2006 20:51:14 +0000 (+0000) Subject: Activate WIN32_STACK_RLIMIT override only on platforms where this is X-Git-Tag: REL8_3_BETA1~1693 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e5467d9e248ef8f9274d8e81ceb91ef681988a7f;p=thirdparty%2Fpostgresql.git Activate WIN32_STACK_RLIMIT override only on platforms where this is necessary. --- diff --git a/src/backend/tcop/Makefile b/src/backend/tcop/Makefile index 200cbad1b23..ff61eef049b 100644 --- a/src/backend/tcop/Makefile +++ b/src/backend/tcop/Makefile @@ -4,7 +4,7 @@ # Makefile for tcop # # IDENTIFICATION -# $PostgreSQL: pgsql/src/backend/tcop/Makefile,v 1.26 2006/10/08 17:15:34 tgl Exp $ +# $PostgreSQL: pgsql/src/backend/tcop/Makefile,v 1.27 2006/12/14 20:51:14 petere Exp $ # #------------------------------------------------------------------------- @@ -14,7 +14,9 @@ include $(top_builddir)/src/Makefile.global OBJS= dest.o fastpath.o postgres.o pquery.o utility.o +ifneq (,$(filter $(PORTNAME),cygwin win32)) override CPPFLAGS += -DWIN32_STACK_RLIMIT=$(WIN32_STACK_RLIMIT) +endif all: SUBSYS.o