1 # Process this file with autoconf to produce a configure script. 2 AC_INIT([detox], [1.4.5], [detox.dharple at gmail.com], [], [https://github.com/dharple/detox]) 3 AM_INIT_AUTOMAKE([foreign -Wall -Werror]) 4 5 AC_PROG_CC 6 AC_PROG_LEX([noyywrap]) 7 AC_PROG_YACC 8 9 AC_CHECK_FUNCS([getopt_long]) 10 AC_STRUCT_ST_BLOCKS 11 12 AC_SYS_LARGEFILE 13 14 AC_CONFIG_HEADERS([src/config.h]) 15 AC_CONFIG_FILES([ 16 Makefile 17 src/Makefile 18 ]) 19 AC_OUTPUT