about summary refs log tree commit homepage
path: root/lib/PublicInbox/Tmpfile.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2020-10-16 07:05:10 +0000
committerEric Wong <e@80x24.org>2020-10-16 17:15:32 +0000
commitc51b6340a05cf11f7b0b3bb978288ade2f930c4a (patch)
treec15ee8054d8f4b7b691c827f55f8c85edb5758c9 /lib/PublicInbox/Tmpfile.pm
parent28704f95181f193e20856b7b52454e8cf0e57a57 (diff)
downloadpublic-inbox-c51b6340a05cf11f7b0b3bb978288ade2f930c4a.tar.gz
Once again we'll need O_APPEND on a temporary file, so note we
support it, here; since Perl 5.32 is way too new to depend on
our users having.
Diffstat (limited to 'lib/PublicInbox/Tmpfile.pm')
-rw-r--r--lib/PublicInbox/Tmpfile.pm7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/PublicInbox/Tmpfile.pm b/lib/PublicInbox/Tmpfile.pm
index 25bb3a52..eb0fce00 100644
--- a/lib/PublicInbox/Tmpfile.pm
+++ b/lib/PublicInbox/Tmpfile.pm
@@ -2,8 +2,8 @@
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 package PublicInbox::Tmpfile;
 use strict;
-use warnings;
-use base qw(Exporter);
+use v5.10.1;
+use parent qw(Exporter);
 our @EXPORT = qw(tmpfile);
 use Fcntl qw(:DEFAULT);
 use Errno qw(EEXIST);
@@ -13,6 +13,9 @@ use File::Spec;
 # unlinked filename which makes sense when viewed with lsof
 # (at least on Linux)
 # And if we ever stop caring to have debuggable filenames, O_TMPFILE :)
+#
+# This is also for Perl <5.32 which lacks: open(..., '+>>', undef)
+# <https://rt.perl.org/Ticket/Display.html?id=134221>
 sub tmpfile ($;$$) {
         my ($id, $sock, $append) = @_;
         if (defined $sock) {