Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoltan Varga <vargaz@gmail.com>2014-03-25 00:32:07 +0400
committerZoltan Varga <vargaz@gmail.com>2014-03-25 00:32:07 +0400
commit9d156dab71a3c56a16bf0cc28886d19082c68c89 (patch)
treefdcfa92de4946133418adcfafaf0abef8aed4cec /configure.in
parentd9139d3f77e098972a2a70373cce623b08021c35 (diff)
Fix a warning.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 55b57283886..466a096c1ec 100644
--- a/configure.in
+++ b/configure.in
@@ -1863,7 +1863,7 @@ if test x$target_win32 = xno; then
dnl * back
dnl **************************************
if test "x$havekqueue" = "xyes" -a "x$ac_cv_header_sys_event_h" = "xyes"; then
- if x$platform_darwin = xno; then
+ if test "x$platform_darwin" = "xno"; then
AC_DEFINE(USE_KQUEUE_FOR_THREADPOOL, 1, [Use kqueue for the threadpool])
fi
fi