[libev-perl] 02/03: whitespace change to match style
gregor herrmann
gregoa at debian.org
Wed Aug 7 15:57:14 UTC 2013
This is an automated email from the git hooks/post-receive script.
gregoa pushed a commit to branch master
in repository libev-perl.
commit e3165562b625a9f86bcdfb4b50a3c93b3a15746b
Author: gregor herrmann <gregoa at debian.org>
Date: Wed Aug 7 17:28:45 2013 +0200
whitespace change to match style
and intri's perferences :)
Git-Dch: Ignore
---
debian/patches/multiarch-checklib.patch | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/debian/patches/multiarch-checklib.patch b/debian/patches/multiarch-checklib.patch
index 484f308..01e8143 100644
--- a/debian/patches/multiarch-checklib.patch
+++ b/debian/patches/multiarch-checklib.patch
@@ -20,7 +20,7 @@ Last-Update: 2013-08-07
EOF
-my $can_epoll = -e "/usr/include/sys/epoll.h";
-+my $can_epoll = check_lib( header => "sys/epoll.h" );
++my $can_epoll = check_lib(header => "sys/epoll.h");
$can_epoll = $ENV{EV_EPOLL} if exists $ENV{EV_EPOLL};
$DEFINE .= " -DEV_USE_EPOLL=" . (0 + (prompt ("Enable epoll backend (y/n)?", $can_epoll ? "y" : "n") =~ /[yY]/));
@@ -29,7 +29,7 @@ Last-Update: 2013-08-07
EOF
-my $can_kqueue = -e "/usr/include/sys/event.h";
-+my $can_kqueue = check_lib( header => "sys/event.h" );
++my $can_kqueue = check_lib(header => "sys/event.h");
$can_kqueue = $ENV{EV_KQUEUE} if exists $ENV{EV_KQUEUE};
$DEFINE .= " -DEV_USE_KQUEUE=" . (0 + (prompt ("Enable kqueue backend (y/n)?", $can_kqueue ? "y" : "n") =~ /[yY]/));
@@ -38,7 +38,7 @@ Last-Update: 2013-08-07
EOF
-my $can_inotify = -e "/usr/include/sys/inotify.h";
-+my $can_inotify = check_lib( header => "sys/inotify.h" );
++my $can_inotify = check_lib(header => "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]/));
@@ -47,7 +47,7 @@ Last-Update: 2013-08-07
EOF
-my $can_eventfd = -e "/usr/include/sys/eventfd.h";
-+my $can_eventfd = check_lib( header => "sys/eventfd.h" );
++my $can_eventfd = check_lib(header => "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]/));
@@ -56,7 +56,7 @@ Last-Update: 2013-08-07
EOF
-my $can_signalfd = -e "/usr/include/sys/signalfd.h";
-+my $can_signalfd = check_lib( header => "sys/signalfd.h" );
++my $can_signalfd = check_lib(header => "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]/));
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libev-perl.git
More information about the Pkg-perl-cvs-commits
mailing list