From b1f96969b7745e936796edf0b4a9b8c2312589e2 Mon Sep 17 00:00:00 2001 From: David Hill Date: Mon, 1 Jul 2013 16:05:30 -0400 Subject: [PATCH] use !defined(NOT_PPOLL) --- src/subprocess-posix.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/subprocess-posix.cc b/src/subprocess-posix.cc index cd22aa9..a9af756 100644 --- a/src/subprocess-posix.cc +++ b/src/subprocess-posix.cc @@ -224,7 +224,7 @@ bool SubprocessSet::DoWork() { return interrupted_; } -#else // linux || __OpenBSD__ || __Bitrig__ +#else // !defined(USE_PPOLL) bool SubprocessSet::DoWork() { fd_set set; int nfds = 0; @@ -266,7 +266,7 @@ bool SubprocessSet::DoWork() { return interrupted_; } -#endif // linux || __OpenBSD__ || __Bitrig__ +#endif // !defined(USE_PPOLL) Subprocess* SubprocessSet::NextFinished() { if (finished_.empty()) -- 2.7.4