summaryrefslogtreecommitdiffstats
path: root/am
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2010-11-23 19:46:41 +0100
committerWerner Koch <wk@gnupg.org>2010-11-23 19:46:41 +0100
commitb3f9e2130e64e1a57d2b60444edf6f839c1a90b1 (patch)
treeec62e5100ce63278fcb3c743a19b7bcad85f51a7 /am
parent2010-11-17 Marcus Brinkmann <mb@g10code.com> (diff)
downloadgnupg2-b3f9e2130e64e1a57d2b60444edf6f839c1a90b1.tar.xz
gnupg2-b3f9e2130e64e1a57d2b60444edf6f839c1a90b1.zip
Change stack size for Wince.
Allow for a longer agent atartup under wince. Print gpg output via estream.
Diffstat (limited to 'am')
-rw-r--r--am/cmacros.am6
1 files changed, 5 insertions, 1 deletions
diff --git a/am/cmacros.am b/am/cmacros.am
index 6668b2558..da34eb7ed 100644
--- a/am/cmacros.am
+++ b/am/cmacros.am
@@ -54,11 +54,15 @@ endif
# Under Windows we use LockFileEx. WindowsCE provides this only on
# the WindowsMobile 6 platform and thus we need to use the coredll6
-# import library.
+# import library. We also want to use a stacksize of 256k instead of
+# the 2MB which is the default with cegcc. 256k is the largest stack
+# we use with pth.
if HAVE_W32CE_SYSTEM
extra_sys_libs = -lcoredll6
+extra_bin_ldflags = -Wl,--stack=0x40000
else
extra_sys_libs =
+extra_bin_ldflags =
endif