svn commit: r350132 - in head/security/p5-Crypt-Rabbit: . files
Steven Kreuzer
skreuzer at FreeBSD.org
Fri Apr 4 15:11:44 UTC 2014
Author: skreuzer
Date: Fri Apr 4 15:11:43 2014
New Revision: 350132
URL: http://svnweb.freebsd.org/changeset/ports/350132
QAT: https://qat.redports.org/buildarchive/r350132/
Log:
Fix build on versions of FreeBSD that don't have gcc as the default
compiler, remove the flag schedule-insns2 passed to cc
Added:
head/security/p5-Crypt-Rabbit/files/
head/security/p5-Crypt-Rabbit/files/patch-Makefile.PL (contents, props changed)
Modified:
head/security/p5-Crypt-Rabbit/Makefile
Modified: head/security/p5-Crypt-Rabbit/Makefile
==============================================================================
--- head/security/p5-Crypt-Rabbit/Makefile Fri Apr 4 14:52:42 2014 (r350131)
+++ head/security/p5-Crypt-Rabbit/Makefile Fri Apr 4 15:11:43 2014 (r350132)
@@ -10,6 +10,8 @@ PKGNAMEPREFIX= p5-
MAINTAINER= skreuzer at FreeBSD.org
COMMENT= Perl extension for Rabbit stream cipher
+LICENSE= GPLv2
+
USES= perl5
USE_PERL5= configure
Added: head/security/p5-Crypt-Rabbit/files/patch-Makefile.PL
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/p5-Crypt-Rabbit/files/patch-Makefile.PL Fri Apr 4 15:11:43 2014 (r350132)
@@ -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',
More information about the svn-ports-all
mailing list