diff options
author | Steven Kreuzer <skreuzer@FreeBSD.org> | 2014-04-04 15:11:43 +0000 |
---|---|---|
committer | Steven Kreuzer <skreuzer@FreeBSD.org> | 2014-04-04 15:11:43 +0000 |
commit | 06ad3b446755ab739c398eb457f4e8294787394d (patch) | |
tree | b9d85c5fb5256e371fbf2c65efd71b5503597ef6 /security/p5-Crypt-Rabbit | |
parent | e90284b661f8c9a5d41ff22497fbf0fe5c0e2622 (diff) |
Fix build on versions of FreeBSD that don't have gcc as the default
compiler, remove the flag schedule-insns2 passed to cc
Notes
Notes:
svn path=/head/; revision=350132
Diffstat (limited to 'security/p5-Crypt-Rabbit')
-rw-r--r-- | security/p5-Crypt-Rabbit/Makefile | 2 | ||||
-rw-r--r-- | security/p5-Crypt-Rabbit/files/patch-Makefile.PL | 10 |
2 files changed, 12 insertions, 0 deletions
diff --git a/security/p5-Crypt-Rabbit/Makefile b/security/p5-Crypt-Rabbit/Makefile index b44911bd92f0..94ab9f8abd87 100644 --- a/security/p5-Crypt-Rabbit/Makefile +++ b/security/p5-Crypt-Rabbit/Makefile @@ -10,6 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= skreuzer@FreeBSD.org COMMENT= Perl extension for Rabbit stream cipher +LICENSE= GPLv2 + USES= perl5 USE_PERL5= configure diff --git a/security/p5-Crypt-Rabbit/files/patch-Makefile.PL b/security/p5-Crypt-Rabbit/files/patch-Makefile.PL new file mode 100644 index 000000000000..1480cb337aef --- /dev/null +++ b/security/p5-Crypt-Rabbit/files/patch-Makefile.PL @@ -0,0 +1,10 @@ +--- 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', |