From: Brian Havard Date: Fri, 27 Jul 2001 11:21:11 +0000 (+0000) Subject: OS/2: set a decent size stack. Default is only 32k which runs out in some X-Git-Tag: 2.0.22~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f9ee74d602fd03b9d7b5c82ee3c6dbf2f67afc80;p=thirdparty%2Fapache%2Fhttpd.git OS/2: set a decent size stack. Default is only 32k which runs out in some configurations. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89745 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/os/os2/core.mk b/os/os2/core.mk index aac4356532c..9d135cb16de 100644 --- a/os/os2/core.mk +++ b/os/os2/core.mk @@ -1,7 +1,7 @@ # Some rules for making a shared core dll on OS/2 os2core: httpd.dll $(CORE_IMPLIB) - $(LIBTOOL) --mode=link gcc $(EXTRA_LDFLAGS) -o httpd $(CORE_IMPLIB) + $(LIBTOOL) --mode=link gcc -Zstack 512 $(EXTRA_LDFLAGS) -o httpd $(CORE_IMPLIB) httpd.dll: $(PROGRAM_DEPENDENCIES) $(CORE_IMPLIB) $(LINK) -Zdll $(EXTRA_LDFLAGS) -s -o $@ server/exports.lo modules.lo $(PROGRAM_DEPENDENCIES) $(EXTRA_LIBS) server/ApacheCoreOS2.def