# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ(2.61) AC_INIT(scandalo, 0.4-Dev, info@tuxweb.it) AM_INIT_AUTOMAKE AC_CONFIG_SRCDIR([./]) AC_CONFIG_HEADER([config.h]) # Checks for programs. AC_PROG_CC # Checks for libraries. # Checks for header files. AC_HEADER_STDC AC_HEADER_SYS_WAIT AC_CHECK_HEADERS([fcntl.h stdlib.h string.h unistd.h]) # Checks for typedefs, structures, and compiler characteristics. AC_C_CONST AC_TYPE_PID_T # Checks for library functions. AC_FUNC_FORK AC_FUNC_MALLOC AC_TYPE_SIGNAL AC_CHECK_FUNCS([bzero dup2 strerror]) AC_CONFIG_FILES([Makefile]) AC_OUTPUT