Skip to content

Commit

Permalink
Fix an issue building DB_File on Darwin
Browse files Browse the repository at this point in the history
Opened the previous FreeBSD only fix to Darwin too
  • Loading branch information
bingos committed Dec 21, 2024
1 parent e2b8209 commit 553b9a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Devel/PatchPerl.pm
Original file line number Diff line number Diff line change
Expand Up @@ -10473,7 +10473,7 @@ EUMMBIGSUR
}

sub _patch_dbfile_clang {
return unless $^O eq 'freebsd'; # for the moment limit this
return unless $^O eq 'freebsd' or $^O eq 'darwin';
my $perlver = shift;
my $num = _norm_ver( $perlver );
# I've only tested against v5.8.9 and v5.10.0
Expand Down

0 comments on commit 553b9a6

Please sign in to comment.