diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-08-26 20:34:48 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-08-26 20:34:48 +0000 |
commit | 7da0e3835572d02b95a50131e2eb75d6ecad02e5 (patch) | |
tree | b40c8c5a44b053ae222e0ec63e304cc82e5fabd7 /perl.c | |
parent | d34c2299ce15c4bc317af0031fa77cc4a77ec346 (diff) | |
download | perl-7da0e3835572d02b95a50131e2eb75d6ecad02e5.tar.gz |
Integrate two DJGPP portability patches from the 5.6.2 branch :
[20859]
Two portability patches for DJGPP from Richard Dawe
<rich@phekda.freeserve.co.uk>.
Message-Id: <E19qfNh-0000Zq-00@phekda.freeserve.co.uk>
[20911]
Don't uppercase automatically all environment variables on DJGPP.
(reported by Richard Dawe, this breaks portability of Unix
scripts.) Don't change the behaviour on plain MS/DOS.
p4raw-link: @20911 on //depot/maint-5.6/perl-5.6.2: 91a64263ab3d9ea51fa198428b79b128d13386a5
p4raw-link: @20859 on //depot/maint-5.6/perl-5.6.2: e61553d05d06f2b080893dabff3b9134ba8b77f7
p4raw-id: //depot/perl@20913
p4raw-edited: from //depot/maint-5.6/perl-5.6.2@20912 'edit in' perl.c
(@20322..)
p4raw-integrated: from //depot/maint-5.6/perl-5.6.2@20912 'merge in'
djgpp/djgppsed.sh dosish.h (@20322..)
Diffstat (limited to 'perl.c')
-rw-r--r-- | perl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3759,7 +3759,7 @@ S_init_postdump_symbols(pTHX_ register int argc, register char **argv, register for (; *env; env++) { if (!(s = strchr(*env,'='))) continue; -#if defined(MSDOS) +#if defined(MSDOS) && !defined(DJGPP) *s = '\0'; (void)strupr(*env); *s = '='; |