2014-01-26 18:00:46 +00:00
|
|
|
# -*- Autoconf -*-
|
|
|
|
# Process this file with autoconf to produce a configure script.
|
|
|
|
|
2014-03-10 00:40:24 +00:00
|
|
|
AC_INIT([libkqueue], [2.0.3])
|
2014-01-26 18:00:46 +00:00
|
|
|
LT_INIT
|
|
|
|
AM_INIT_AUTOMAKE([foreign subdir-objects])
|
|
|
|
AC_CONFIG_SRCDIR([configure.ac])
|
|
|
|
AC_CONFIG_HEADERS([config.h])
|
|
|
|
AC_PROG_CC
|
|
|
|
|
|
|
|
|
|
|
|
AC_CHECK_HEADER([sys/event.h])
|
|
|
|
AC_CHECK_DECL([EPOLLRDHUP], [], [], [[#include <sys/epoll.h>]])
|
|
|
|
AC_CHECK_DECL([ppoll], [], [], [[
|
|
|
|
#define _GNU_SOURCE
|
|
|
|
#include <poll.h>
|
|
|
|
]])
|
2014-08-20 14:06:01 +00:00
|
|
|
AC_CHECK_HEADERS([sys/epoll.h sys/inotify.h sys/signalfd.h sys/timerfd.h sys/eventfd.h])
|
2014-01-26 18:00:46 +00:00
|
|
|
|
|
|
|
|
2014-02-23 21:31:45 +00:00
|
|
|
AC_CONFIG_FILES([Makefile libkqueue.pc])
|
2014-01-26 18:00:46 +00:00
|
|
|
AC_OUTPUT
|