summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/perl
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2000-04-21 17:59:54 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2000-04-21 17:59:54 +0000
commitebe53d173c4da23127fe2e21820e659075284d35 (patch)
treec1eb71986202029b6a4fa21044f4c658fa5f5fb2 /gnu/usr.bin/perl
parent690c0a8891fd44f207ab9f29006ad7696d201c82 (diff)
add CPAN File::Temp module for perl versions of mkstemp et al.
Diffstat (limited to 'gnu/usr.bin/perl')
-rw-r--r--gnu/usr.bin/perl/MANIFEST1
-rw-r--r--gnu/usr.bin/perl/Makefile.bsd-wrapper8
2 files changed, 6 insertions, 3 deletions
diff --git a/gnu/usr.bin/perl/MANIFEST b/gnu/usr.bin/perl/MANIFEST
index 0a4ed093a10..1c9b247866a 100644
--- a/gnu/usr.bin/perl/MANIFEST
+++ b/gnu/usr.bin/perl/MANIFEST
@@ -617,6 +617,7 @@ lib/File/Spec/Unix.pm portable operations on Unix file names
lib/File/Spec/VMS.pm portable operations on VMS file names
lib/File/Spec/Win32.pm portable operations on Win32 file names
lib/File/stat.pm By-name interface to Perl's builtin stat
+lib/File/Temp.pm Functions for generating temporary files
lib/FileCache.pm Keep more files open than the system permits
lib/FileHandle.pm Backward-compatible front end to IO extension
lib/FindBin.pm Find name of currently executing program
diff --git a/gnu/usr.bin/perl/Makefile.bsd-wrapper b/gnu/usr.bin/perl/Makefile.bsd-wrapper
index f9914f95df0..fdbca0d656b 100644
--- a/gnu/usr.bin/perl/Makefile.bsd-wrapper
+++ b/gnu/usr.bin/perl/Makefile.bsd-wrapper
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.bsd-wrapper,v 1.37 2000/04/12 22:12:15 mickey Exp $
+# $OpenBSD: Makefile.bsd-wrapper,v 1.38 2000/04/21 17:59:53 millert Exp $
#
# Build wrapper for Perl 5.6.0
#
@@ -79,8 +79,8 @@ MANALL= a2p.cat1 c2ph.cat1 dprofpp.cat1 find2perl.cat1 \
File::Find.cat3p File::Glob.cat3p File::Path.cat3p File::Spec.cat3p \
File::Spec::Functions.cat3p File::Spec::Mac.cat3p \
File::Spec::OS2.cat3p File::Spec::Unix.cat3p File::Spec::VMS.cat3p \
- File::Spec::Win32.cat3p File::stat.cat3p FileCache.cat3p \
- FileHandle.cat3p FindBin.cat3p Getopt::Long.cat3p \
+ File::Spec::Win32.cat3p File::stat.cat3p File::Temp.cat3p \
+ FileCache.cat3p FileHandle.cat3p FindBin.cat3p Getopt::Long.cat3p \
Getopt::Std.cat3p I18N::Collate.cat3p IO.cat3p IO::Dir.cat3p \
IO::File.cat3p IO::Handle.cat3p IO::Pipe.cat3p IO::Poll.cat3p \
IO::Seekable.cat3p IO::Select.cat3p IO::Socket.cat3p \
@@ -557,6 +557,8 @@ File::Spec::Win32.cat3p: lib/File/Spec/Win32.pm
${POD2MAN} --section=3p --official ${.ALLSRC} | ${NROFF} -man > ${.TARGET}
File::stat.cat3p: lib/File/stat.pm
${POD2MAN} --section=3p --official ${.ALLSRC} | ${NROFF} -man > ${.TARGET}
+File::Temp.cat3p: lib/File/Temp.pm
+ ${POD2MAN} --section=3p --official ${.ALLSRC} | ${NROFF} -man > ${.TARGET}
FileCache.cat3p: lib/FileCache.pm
${POD2MAN} --section=3p --official ${.ALLSRC} | ${NROFF} -man > ${.TARGET}
FileHandle.cat3p: lib/FileHandle.pm