freebsd-ports/security/p5-Crypt-Rabbit/files/patch-Makefile.PL
Steven Kreuzer 06ad3b4467 Fix build on versions of FreeBSD that don't have gcc as the default
compiler, remove the flag schedule-insns2 passed to cc
2014-04-04 15:11:43 +00:00

10 lines
403 B
Perl

--- Makefile.PL.orig 2014-04-04 14:56:24.000000000 +0000
+++ Makefile.PL 2014-04-04 14:56:41.000000000 +0000
@@ -1,6 +1,6 @@
use ExtUtils::MakeMaker;
-my $opt = '-O3 -funroll-loops -fomit-frame-pointer -fschedule-insns2 -Os -fno-strength-reduce -Wall -pipe';
+my $opt = '-O3 -funroll-loops -fomit-frame-pointer -Os -fno-strength-reduce -Wall -pipe';
WriteMakefile(
'NAME' => 'Crypt::Rabbit',