diff options
author | Perl 5 Porters <perl5-porters@africa.nicoh.com> | 1996-03-15 08:24:00 +0000 |
---|---|---|
committer | Charles Bailey <bailey@genetics.upenn.edu> | 1996-03-15 08:24:00 +0000 |
commit | 4bf4dbb313bb52738a09662a2b9a2474c1ea92ff (patch) | |
tree | 2973c057735ebbdc4c23283f7fa979c604299e16 /hints/os2.sh | |
parent | a2c75dc2571a8447475cb62d22a998ab5aa3d54b (diff) | |
download | perl-4bf4dbb313bb52738a09662a2b9a2474c1ea92ff.tar.gz |
Update
Diffstat (limited to 'hints/os2.sh')
-rw-r--r-- | hints/os2.sh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/hints/os2.sh b/hints/os2.sh index d4fb71df2a..43b4b8ea49 100644 --- a/hints/os2.sh +++ b/hints/os2.sh @@ -39,7 +39,7 @@ if [ "$emxaout" != "" ]; then d_fork='define' lddlflags='-Zdll' ldflags='-Zexe' - ccflags='-DDOSISH -DNO_SYS_ALLOC -DOS2=2 -DEMBED -I.' + ccflags='-DDOSISH -DNO_SYS_ALLOC -DOS2=2 -DEMBED -I. -DPACK_MALLOC' use_clib='c' else d_shrplib='define' @@ -49,8 +49,9 @@ else plibext='.lib' d_fork='undef' lddlflags='-Zdll -Zomf -Zcrtdll' - ldflags='-Zexe -Zomf -Zcrtdll' - ccflags='-Zomf -DDOSISH -DOS2=2 -DEMBED -I.' + # Recursive regmatch may eat 2.5M of stack alone. + ldflags='-Zexe -Zomf -Zcrtdll -Zstack 32000' + ccflags='-Zomf -DDOSISH -DOS2=2 -DEMBED -I. -DPACK_MALLOC' use_clib='c_import' fi |