configure.ac: Fix quoting on AC_CHECK_HEADERS

Currently the output from autoheader contains the definition
HAVE_SYS_EVENTFD_H_ (not the trailing underscore) so the sys/eventfd.h
header is never used. Remove a layer of quoting which seems to fix
the issue.
This commit is contained in:
Will Newton 2014-08-20 15:06:01 +01:00
parent f14c4b8fc0
commit 10780e38c0

View File

@ -15,7 +15,7 @@ AC_CHECK_DECL([ppoll], [], [], [[
#define _GNU_SOURCE
#include <poll.h>
]])
AC_CHECK_HEADERS([[sys/epoll.h sys/inotify.h sys/signalfd.h sys/timerfd.h sys/eventfd.h]])
AC_CHECK_HEADERS([sys/epoll.h sys/inotify.h sys/signalfd.h sys/timerfd.h sys/eventfd.h])
AC_CONFIG_FILES([Makefile libkqueue.pc])