aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortobez <tobez@FreeBSD.org>2009-09-04 20:06:20 +0800
committertobez <tobez@FreeBSD.org>2009-09-04 20:06:20 +0800
commita1cdcb1c7d2382b62bf121bf62a6a048c865fb28 (patch)
tree2ebba928b46bd85b933d82a1f66d09c9d13f9356
parent3ab2673f892cf9e3b8f715039d53ab7043cde767 (diff)
downloadfreebsd-ports-gnome-a1cdcb1c7d2382b62bf121bf62a6a048c865fb28.tar.gz
freebsd-ports-gnome-a1cdcb1c7d2382b62bf121bf62a6a048c865fb28.tar.zst
freebsd-ports-gnome-a1cdcb1c7d2382b62bf121bf62a6a048c865fb28.zip
Remove a patch I forgot to remove during the previous commit.
Bump PORTREVISION. Reported by: pointyhat via erwin
-rw-r--r--devel/p5-Coro/Makefile1
-rw-r--r--devel/p5-Coro/files/patch-Coro-Makefile.PL75
2 files changed, 1 insertions, 75 deletions
diff --git a/devel/p5-Coro/Makefile b/devel/p5-Coro/Makefile
index 4816e282c601..35ddb3ed8fea 100644
--- a/devel/p5-Coro/Makefile
+++ b/devel/p5-Coro/Makefile
@@ -8,6 +8,7 @@
PORTNAME= Coro
PORTVERSION= 5.170
DISTVERSION= ${PORTVERSION:C/0$//}
+PORTREVISION= 1
PORTEPOCH= 1
CATEGORIES= devel perl5
MASTER_SITES= CPAN
diff --git a/devel/p5-Coro/files/patch-Coro-Makefile.PL b/devel/p5-Coro/files/patch-Coro-Makefile.PL
deleted file mode 100644
index d633d881f04c..000000000000
--- a/devel/p5-Coro/files/patch-Coro-Makefile.PL
+++ /dev/null
@@ -1,75 +0,0 @@
---- Coro/Makefile.PL.orig 2009-03-11 22:39:55.000000000 +0800
-+++ Coro/Makefile.PL 2009-03-11 22:48:31.000000000 +0800
-@@ -23,9 +23,9 @@
-
- EOF
-
--if (prompt ("Skip further questions and use defaults (y/n)?", "y") =~ /[yY]/) {
-+#if (prompt ("Skip further questions and use defaults (y/n)?", "y") =~ /[yY]/) {
- $ENV{PERL_MM_USE_DEFAULT} = 1;
--}
-+#}
-
-
- $DEFINE .= " -DHAVE_MMAP" if $Config{d_mmap} eq "define" && $Config{d_munmap} eq "define";
-@@ -164,10 +164,11 @@
-
- retry:
-
--my $r = prompt "Use which implementation,\n" .
-- "<s>et/longjump, <u>context, <a>ssembly, <i>rix, <l>inux or <w>indows?",
-- $iface;
--$iface = lc $1 if $r =~ /(\S)/;
-+#my $r = prompt "Use which implementation,\n" .
-+# "<s>et/longjump, <u>context, <a>ssembly, <i>rix, <l>inux or <w>indows?",
-+# $iface;
-+#$iface = lc $1 if $r =~ /(\S)/;
-+$iface = 'u';
-
- if ($iface eq "u") {
- $DEFINE .= " -DCORO_UCONTEXT";
-@@ -232,7 +233,8 @@
-
- my $stacksize = $^O eq "linux" && $] < 5.008008 ? 128 * 1024 : 16384;
-
--$stacksize = prompt ("C stack size factor?", $stacksize);
-+#$stacksize = prompt ("C stack size factor?", $stacksize);
-+my $stacksize = 65536;
- $DEFINE .= " -DCORO_STACKSIZE=$stacksize";
-
- print "using a stacksize of $stacksize * sizeof(long)\n";
-@@ -259,7 +261,8 @@
-
- EOF
-
--my $stackguard = prompt ("Number of guard pages (0 disables)?", "4");
-+#my $stackguard = prompt ("Number of guard pages (0 disables)?", "4");
-+my $stackguard = 4;
- $DEFINE .= " -DCORO_STACKGUARD=$stackguard";
-
- print <<EOF;
-@@ -277,8 +280,9 @@
-
- EOF
-
--my $valgrind = prompt ("Enable valgrind support (y/n)?",
-- -r "/usr/include/valgrind/valgrind.h" ? "y" : "n");
-+#my $valgrind = prompt ("Enable valgrind support (y/n)?",
-+# -r "/usr/include/valgrind/valgrind.h" ? "y" : "n");
-+my $valgrind='n';
- $DEFINE .= " -DCORO_USE_VALGRIND=1" if $valgrind =~ /[yY]/;
-
-
-@@ -295,9 +299,9 @@
-
- EOF
-
--my $use_internals = prompt ("Prefer perl functions over coro functions (y/n)?", "n");
--$DEFINE .= " -DCORO_PREFER_PERL_FUNCTIONS=1" if $use_internals =~ /[yY]/;
--
-+#my $use_internals = prompt ("Prefer perl functions over coro functions (y/n)?", "n");
-+#$DEFINE .= " -DCORO_PREFER_PERL_FUNCTIONS=1" if $use_internals =~ /[yY]/;
-+my $use_internals='n';
- print <<EOF;
-
- *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***