Cleaned up configure.in

Removed some obsolete macros and added a few more headers and function
checks.
This commit is contained in:
Yorhel 2009-04-30 11:25:06 +02:00
parent 3610121dab
commit 2d1060709b

View file

@ -13,23 +13,19 @@ AC_PROG_RANLIB
AC_CHECK_LIB(ncurses, initscr)
# Checks for header files.
AC_HEADER_DIRENT
AC_HEADER_STDC
AC_CHECK_HEADERS([limits.h stdlib.h string.h sys/time.h unistd.h fnmatch.h ncurses.h])
AC_CHECK_HEADERS(
[limits.h stdlib.h string.h sys/time.h sys/types.h sys/stat.h dirent.h unistd.h fnmatch.h ncurses.h],[],
AC_MSG_ERROR([required header file not found]))
# Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_TYPE_OFF_T
AC_SYS_LARGEFILE
AC_STRUCT_ST_BLOCKS
AC_HEADER_TIME
# Checks for library functions.
AC_FUNC_CLOSEDIR_VOID
AC_FUNC_LSTAT
AC_FUNC_MALLOC
AC_FUNC_STAT
AC_CHECK_FUNCS([getcwd gettimeofday memset fnmatch])
AC_CHECK_FUNCS(
[getcwd gettimeofday memset fnmatch chdir rmdir unlink lstat getcwd],[],
AC_MSG_ERROR([required function missing]))
AC_OUTPUT([Makefile src/Makefile doc/Makefile])