summaryrefslogtreecommitdiff
path: root/configure.am
blob: 255d0b42c5d0a83096d0cf9d8e8a5b4572dd19b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
AC_INIT([commission.fcgi], [0.1])
AC_CONFIG_SRCDIR([/src/fcgi_commission.cc])
AC_INIT_AUTOMAKE

AC_PROG_CC
AC_PROG_CXX
AC_PROG_INSTALL
AC_PROG_MAKE_SET

AC_HEADER_STDC

AC_CHECK_HEADERS([ \
stdio.h stdlib.h unistd.h getopt.h errno.h time.h \
ctype.h sys/types.h sys/stat.h fcntl.h stdarg.h string.h printf.h \
stdint.h sys/ioctrl.h fcgio.h \
], [],AC_MSG_ERROR([
required header missing]))

AC_OUTPUT([Makefile src/Makefile])