summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorRalf Habacker <ralf.habacker@freenet.de>2018-10-20 22:25:06 +0200
committerRalf Habacker <ralf.habacker@freenet.de>2018-10-24 10:03:29 +0200
commit9455d3542a3f8fa8feb96cddfc96db0c34e2ed15 (patch)
treed731bdd51fdc735751ca56b1466c3623445245c0 /configure.ac
parentc9d3bf5f3f56784833648892925c3186e2b62912 (diff)
downloaddbus-9455d3542a3f8fa8feb96cddfc96db0c34e2ed15.tar.gz
Use same name for DBUS_HAVE_LINUX_EPOLL cpp macro and Automake conditional
Reviewed-by: Simon McVittie <smcv@collabora.com> Bug: https://gitlab.freedesktop.org/dbus/dbus/merge_requests/18
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 05c18b5e..51a016dc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1011,7 +1011,7 @@ fi
if test x$have_linux_epoll = xyes; then
AC_DEFINE([DBUS_HAVE_LINUX_EPOLL], 1, [Define to use epoll(4) on Linux])
fi
-AM_CONDITIONAL([HAVE_LINUX_EPOLL], [test x$have_linux_epoll = xyes])
+AM_CONDITIONAL([DBUS_HAVE_LINUX_EPOLL], [test x$have_linux_epoll = xyes])
# kqueue checks
if test x$enable_kqueue = xno ; then