mirror of
https://github.com/darlinghq/darling-libkqueue.git
synced 2024-11-23 03:39:51 +00:00
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:
parent
f14c4b8fc0
commit
10780e38c0
@ -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])
|
||||
|
Loading…
Reference in New Issue
Block a user