[go: up one dir, main page]

Menu

[r3]: / configure.in  Maximize  Restore  History

Download this file

18 lines (12 with data), 493 Bytes

# $Id$

AC_INIT([tabler], [2], [Heath Caldwell <hncaldwell@csupomona.edu>])
AM_INIT_AUTOMAKE

AC_PROG_CC

AC_HEADER_STDC

AC_CHECK_LIB([c], [main], [], AC_MSG_ERROR(requires libc))
AC_CHECK_LIB([m], [main], [], AC_MSG_ERROR(requires libm))
AC_CHECK_FUNCS([regcomp regexec regerror], , AC_MSG_ERROR(regular expression functions are required))
AC_CHECK_FUNC([floor], , AC_MSG_ERROR(floor is required))
AC_CHECK_FUNC([log], , AC_MSG_ERROR(log is required))

AC_CONFIG_FILES([Makefile])
AC_OUTPUT