mirror of
https://code.blicky.net/yorhel/ncdu.git
synced 2026-01-13 01:08:41 -09:00
Cleaned up configure.in
Removed some obsolete macros and added a few more headers and function checks.
This commit is contained in:
parent
3610121dab
commit
2d1060709b
1 changed files with 6 additions and 10 deletions
16
configure.in
16
configure.in
|
|
@ -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])
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue