From: Jarkko Hietaniemi Date: Fri, 8 Feb 2002 14:00:23 +0000 (+0000) Subject: DJGPP tweaks from Laszlo Molnar. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=718a327c4ca347b8ea8543d4418a22703669a8bf;p=p5sagit%2Fp5-mst-13.2.git DJGPP tweaks from Laszlo Molnar. p4raw-id: //depot/perl@14596 --- diff --git a/djgpp/djgppsed.sh b/djgpp/djgppsed.sh index fb140a3..6401681 100644 --- a/djgpp/djgppsed.sh +++ b/djgpp/djgppsed.sh @@ -44,6 +44,5 @@ sed -e 's=:^/:={^([a-z]:)?[\\\\/]}=g' lib/termcap.pl >s; mv -f s lib/termcap.pl sed -e $SPACKLIST installman >s; mv -f s installman sed -e $SPACKLIST lib/ExtUtils/Installed.pm >s; mv -f s lib/ExtUtils/Installed.pm sed -e $SPACKLIST lib/ExtUtils/Packlist.pm >s; mv -f s lib/ExtUtils/Packlist.pm -sed -e $SPACKLIST lib/ExtUtils/inst >s; mv -f s lib/ExtUtils/inst sed -e $SABC t/io/iprefix.t >s; mv -f s t/io/iprefix.t sed -e 's=L_ctermid==g' ext/POSIX/Makefile.PL >s; mv -f s ext/POSIX/Makefile.PL diff --git a/perl.c b/perl.c index c220f66..91a3dda 100644 --- a/perl.c +++ b/perl.c @@ -202,16 +202,6 @@ perl_construct(pTHXx) PL_sighandlerp = Perl_sighandler; PL_pidstatus = newHV(); - -#ifdef MSDOS - /* - * There is no way we can refer to them from Perl so close them to save - * space. The other alternative would be to provide STDAUX and STDPRN - * filehandles. - */ - (void)PerlIO_close(PerlIO_importFILE(stdaux, 0)); - (void)PerlIO_close(PerlIO_importFILE(stdprn, 0)); -#endif } PL_rs = newSVpvn("\n", 1);