about summary refs log tree commit homepage
path: root/lib/PublicInbox/MultiMidQueue.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/PublicInbox/MultiMidQueue.pm')
-rw-r--r--lib/PublicInbox/MultiMidQueue.pm7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/PublicInbox/MultiMidQueue.pm b/lib/PublicInbox/MultiMidQueue.pm
index 3c28ebbc..eb2ecf2f 100644
--- a/lib/PublicInbox/MultiMidQueue.pm
+++ b/lib/PublicInbox/MultiMidQueue.pm
@@ -8,7 +8,12 @@ use strict;
 use SDBM_File; # part of Perl standard library
 use Fcntl qw(O_RDWR O_CREAT);
 use File::Temp 0.19 (); # 0.19 for ->newdir
-my %e = (freebsd => 0x100000, linux => 0x80000, openbsd => 0x10000);
+my %e = (
+        freebsd => 0x100000,
+        linux => 0x80000,
+        netbsd => 0x400000,
+        openbsd => 0x10000,
+);
 my $O_CLOEXEC = $e{$^O} // 0;
 
 sub new {