summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2017-04-26 11:09:14 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2017-05-04 13:49:37 +1000
commit251023b9e445d92ec932b92e5969e9fd47be2a5f (patch)
tree333092e0c9f1eec983bd448129e6d4d39f678afc
parent3c2fbabb27eb78826c7155bf8f4c35a126db9bc6 (diff)
downloadlibinput-251023b9e445d92ec932b92e5969e9fd47be2a5f.tar.gz
configure.ac: drop checks for a few flags
These were added in 2013 for old enterprise distributions (centos 5.5, see fdo bz 63360), it's now 4 years later and these checks seems a bit superfluous. If those bits are missing, compilation will fail anyway. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r--configure.ac9
1 files changed, 0 insertions, 9 deletions
diff --git a/configure.ac b/configure.ac
index 8b838fdb..338d385c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -55,15 +55,6 @@ AM_CONDITIONAL([HAVE_PYTHON], [test "$PYTHON" != :])
LT_PREREQ([2.2])
LT_INIT
-AC_CHECK_DECL(EPOLL_CLOEXEC, [],
- [AC_MSG_ERROR("EPOLL_CLOEXEC is needed to compile libinput")],
- [[#include <sys/epoll.h>]])
-AC_CHECK_DECL(TFD_CLOEXEC,[],
- [AC_MSG_ERROR("TFD_CLOEXEC is needed to compile libinput")],
- [[#include <sys/timerfd.h>]])
-AC_CHECK_DECL(CLOCK_MONOTONIC,[],
- [AC_MSG_ERROR("CLOCK_MONOTONIC is needed to compile libinput")],
- [[#include <time.h>]])
AC_CHECK_DECL(static_assert, [],
[AC_DEFINE(static_assert(...), [/* */], [noop static_assert() replacement]),
AC_MSG_RESULT([no])],