Skip to content

Commit

Permalink
try more dbm flavors
Browse files Browse the repository at this point in the history
  • Loading branch information
msimerson committed Mar 12, 2024
1 parent 3684a15 commit 236c322
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,4 @@ requires:
GeoIP2: 0
Redis: 0
CDB_File: 0
DB_File: 0
version: 1.00
1 change: 0 additions & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ WriteMakefile(
VERSION_FROM => 'lib/Qpsmtpd.pm',
PREREQ_PM => {
'CDB_File' => 0,
'DB_File' => 0,
'Data::Dumper' => 0,
'Date::Parse' => 0,
'File::Temp' => 0,
Expand Down
2 changes: 1 addition & 1 deletion lib/Qpsmtpd/DB/File/DBM.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings;

use parent 'Qpsmtpd::DB';

BEGIN { @AnyDBM_File::ISA = qw(DB_File GDBM_File NDBM_File) }
BEGIN { @AnyDBM_File::ISA = qw(DB_File GDBM_File NDBM_File SDBM_File ODBM_File) }
use AnyDBM_File;
use Fcntl qw(:DEFAULT :flock LOCK_EX LOCK_NB);

Expand Down

0 comments on commit 236c322

Please sign in to comment.