summaryrefslogtreecommitdiff
path: root/pnotify/pnotify-0.2/configure.in
blob: 32be29d19e48ceb9bb049ca4b3fe413479b4870e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#                                               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

AC_PREREQ(2.59)
AC_INIT([pnotify],[0.2],[devel@heily.com])
AM_INIT_AUTOMAKE(pnotify, 0.2)
AC_CONFIG_SRCDIR([pnotify.c])
AM_CONFIG_HEADER([config.h])

# Checks for programs.
AC_PROG_CC
AC_PROG_RANLIB

# Checks for libraries.

# Checks for header files.
AC_HEADER_DIRENT
AC_HEADER_STDC
AC_CHECK_HEADERS([fcntl.h limits.h stdint.h stdlib.h string.h sys/param.h sys/socket.h sys/time.h unistd.h])

# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
AC_C_CONST
AC_C_INLINE

# Checks for library functions.
AC_CHECK_FUNCS([atexit memset kqueue inotify])

AC_CONFIG_FILES([Makefile])
AC_OUTPUT