summaryrefslogtreecommitdiff
path: root/configure.am
diff options
context:
space:
mode:
Diffstat (limited to 'configure.am')
-rw-r--r--configure.am19
1 files changed, 19 insertions, 0 deletions
diff --git a/configure.am b/configure.am
new file mode 100644
index 0000000..255d0b4
--- /dev/null
+++ b/configure.am
@@ -0,0 +1,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]) \ No newline at end of file