summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorSean Bright <sean.bright@gmail.com>2017-06-07 15:32:57 -0400
committerSean Bright <sean.bright@gmail.com>2017-06-07 14:36:37 -0500
commite497a76d24ea079beb48968e9a2ef2b8102dd149 (patch)
tree9f92351a6a271d63a890118a56bb6db3bc0922f2 /configure.ac
parent9f054955f2f7830d4a7d20326d9fea7dff277456 (diff)
eventfd: Disable during cross compilation
Reported by Lonnie Abelbeck <lonnie@abelbeck.com> via private e-mail. Change-Id: Icc80f12b8d8d591e14a8e0ed9f1c02cbd193a89b
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 9c07a4f6d..d7fb2171e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1131,7 +1131,8 @@ AC_RUN_IFELSE(
[return eventfd(0, EFD_NONBLOCK | EFD_SEMAPHORE) == -1;])],
AC_MSG_RESULT(yes)
AC_DEFINE([HAVE_EVENTFD], 1, [Define to 1 if your system supports eventfd and the EFD_NONBLOCK and EFD_SEMAPHORE flags.]),
- AC_MSG_RESULT(no)
+ AC_MSG_RESULT(no),
+ AC_MSG_RESULT(cross-compile)
)
AST_GCC_ATTRIBUTE(pure)