summaryrefslogtreecommitdiff
path: root/package/p5-ev/patches/patch-Makefile_PL
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-06-23 19:30:17 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2014-06-24 08:36:33 +0200
commit997cf3b5924ab5d01ba602b1994709b6b53ce51a (patch)
tree3ff705a1526f0febb619e898505b518da60de450 /package/p5-ev/patches/patch-Makefile_PL
parent5d996627a8cbb8ab535a5352e957b7d584fef9a6 (diff)
fix p5-ev, select is used by logitechmediaserver
Diffstat (limited to 'package/p5-ev/patches/patch-Makefile_PL')
-rw-r--r--package/p5-ev/patches/patch-Makefile_PL17
1 files changed, 4 insertions, 13 deletions
diff --git a/package/p5-ev/patches/patch-Makefile_PL b/package/p5-ev/patches/patch-Makefile_PL
index 040144fac..e39cde035 100644
--- a/package/p5-ev/patches/patch-Makefile_PL
+++ b/package/p5-ev/patches/patch-Makefile_PL
@@ -1,14 +1,5 @@
--- EV-4.17.orig/Makefile.PL 2013-08-01 04:08:54.000000000 +0200
-+++ EV-4.17/Makefile.PL 2014-06-17 22:04:03.000000000 +0200
-@@ -77,7 +77,7 @@ OS, via the next question. I highly reco
-
- EOF
-
--if (prompt ("Enable select backend (y/n)?", "y") =~ /[yY]/) {
-+if (prompt ("Enable select backend (y/n)?", "n") =~ /[yY]/) {
- $DEFINE .= " -DEV_USE_SELECT=1";
-
- print <<EOF;
++++ EV-4.17/Makefile.PL 2014-06-23 18:55:22.780438631 +0200
@@ -112,7 +112,7 @@ the default here unless you run into com
EOF
@@ -50,7 +41,7 @@
my $can_inotify = -e "/usr/include/sys/inotify.h";
$can_inotify = $ENV{EV_INOTIFY} if exists $ENV{EV_INOTIFY};
-$DEFINE .= " -DEV_USE_INOTIFY=" . (0 + (prompt ("Enable inotify support (y/n)?", $can_inotify ? "y" : "n") =~ /[yY]/));
-+$DEFINE .= " -DEV_USE_INOTIFY=" . (0 + (prompt ("Enable inotify support (y/n)?", "y") =~ /[yY]/));
++$DEFINE .= " -DEV_USE_INOTIFY=" . (0 + (prompt ("Enable inotify support (y/n)?", "n") =~ /[yY]/));
print <<EOF;
@@ -59,7 +50,7 @@
my $can_eventfd = -e "/usr/include/sys/eventfd.h";
$can_eventfd = $ENV{EV_EVENTFD} if exists $ENV{EV_EVENTFD};
-$DEFINE .= " -DEV_USE_EVENTFD=" . (0 + (prompt ("Enable linux eventfd support (y/n)?", $can_eventfd ? "y" : "n") =~ /[yY]/));
-+$DEFINE .= " -DEV_USE_EVENTFD=" . (0 + (prompt ("Enable linux eventfd support (y/n)?", "y") =~ /[yY]/));
++$DEFINE .= " -DEV_USE_EVENTFD=" . (0 + (prompt ("Enable linux eventfd support (y/n)?", "n") =~ /[yY]/));
print <<EOF;
@@ -68,7 +59,7 @@
my $can_signalfd = -e "/usr/include/sys/signalfd.h";
$can_signalfd = $ENV{EV_SIGNALFD} if exists $ENV{EV_SIGNALFD};
-$DEFINE .= " -DEV_USE_SIGNALFD=" . (0 + (prompt ("Enable linux signalfd support (y/n)?", $can_signalfd ? "y" : "n") =~ /[yY]/));
-+$DEFINE .= " -DEV_USE_SIGNALFD=" . (0 + (prompt ("Enable linux signalfd support (y/n)?", "y") =~ /[yY]/));
++$DEFINE .= " -DEV_USE_SIGNALFD=" . (0 + (prompt ("Enable linux signalfd support (y/n)?", "n") =~ /[yY]/));
print <<EOF;