diff options
author | Hans Mulder <hansmu@xs4all.nl> | 1998-04-03 08:01:57 -0800 |
---|---|---|
committer | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1998-05-14 14:38:44 +0000 |
commit | ecbaadc1f9d5bbebf204a971c75e312b0e7fa9ae (patch) | |
tree | 277072d6a071b31846928a9d4693710bfc7ebb9a /vms/ext | |
parent | 4948a33a8937916e9fc9b935bfa3823f9d37bcc8 (diff) | |
download | perl-ecbaadc1f9d5bbebf204a971c75e312b0e7fa9ae.tar.gz |
Build Stdio and DCLSym modules as part of normal VMS perl build
p4raw-id: //depot/perl@940
Diffstat (limited to 'vms/ext')
-rw-r--r-- | vms/ext/DCLsym/Makefile.PL | 3 | ||||
-rw-r--r-- | vms/ext/Stdio/Makefile.PL | 4 | ||||
-rw-r--r-- | vms/ext/Stdio/Stdio.xs | 1 |
3 files changed, 6 insertions, 2 deletions
diff --git a/vms/ext/DCLsym/Makefile.PL b/vms/ext/DCLsym/Makefile.PL index 8e6f5bce40..84ab2be2b5 100644 --- a/vms/ext/DCLsym/Makefile.PL +++ b/vms/ext/DCLsym/Makefile.PL @@ -1,3 +1,4 @@ use ExtUtils::MakeMaker; -WriteMakefile( 'VERSION_FROM' => 'DCLsym.pm' ); +WriteMakefile( 'VERSION_FROM' => 'DCLsym.pm', + 'MAN3PODS' => ' '); diff --git a/vms/ext/Stdio/Makefile.PL b/vms/ext/Stdio/Makefile.PL index e5ea988818..f5599f8a96 100644 --- a/vms/ext/Stdio/Makefile.PL +++ b/vms/ext/Stdio/Makefile.PL @@ -1,3 +1,5 @@ use ExtUtils::MakeMaker; -WriteMakefile( 'VERSION_FROM' => 'Stdio.pm' ); +WriteMakefile( 'VERSION_FROM' => 'Stdio.pm', + 'MAN3PODS' => ' ', # pods will be built later + ); diff --git a/vms/ext/Stdio/Stdio.xs b/vms/ext/Stdio/Stdio.xs index 0a7b47e514..9744be04f2 100644 --- a/vms/ext/Stdio/Stdio.xs +++ b/vms/ext/Stdio/Stdio.xs @@ -87,6 +87,7 @@ newFH(FILE *fp, char type) { HV *stash; IO *io; + dTHR; /* Find stash for VMS::Stdio. We don't do this once at boot * to allow for possibility of threaded Perl with per-thread * symbol tables. This code (through io = ...) is really |