dnl Process this file with autoconf to produce a configure script. dnl configure.in for gruftistats, originally made by Colin Phipps using autoscan dnl $Id: configure.in,v 1.13 2001/09/16 10:50:09 cph Exp $ AC_INIT(ircstats.h) AM_CONFIG_HEADER(config.h) dnl Automake stuff AM_INIT_AUTOMAKE(gruftistats,0.2.4) dnl Checks for programs. AC_PROG_CC AC_C_CONST CFLAGS="$CFLAGS -Wall -Wwrite-strings" dnl Checks for libraries. dnl Checks for header files. AC_HEADER_STDC dnl Checks for typedefs, structures, and compiler characteristics. AC_C_CONST AC_TYPE_SIZE_T dnl Checks for library functions. AC_CHECK_FUNCS(strdup strstr strlwr strcasecmp stricmp strlcpy strlcat) dnl Debugging AC_ARG_ENABLE(dmalloc,[ --enable-dmalloc use the dmalloc heap debug library],AC_CHECK_LIB(dmalloc,malloc)) dnl Output AC_OUTPUT(Makefile pipes/Makefile formats/Makefile gruftistats.spec)