1
1
ncdu/configure.in
yorhel ce53b81dc5 Configure checks for ncurses.h, fixes bug #1764304
git-svn-id: svn://blicky.net/ncdu/trunk@20 ce56bc8d-f834-0410-b703-f827bd498a76
2007-08-02 08:21:11 +00:00

39 строки
845 B
Plaintext

AC_INIT(ncdu, svn, projects@yorhel.nl)
AC_CONFIG_SRCDIR([src/ncdu.h])
AC_CONFIG_HEADER([config.h])
AM_INIT_AUTOMAKE
# Checks for programs.
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_RANLIB
# Checks for libraries.
AC_CHECK_LIB(ncurses, initscr)
AC_CHECK_LIB(form, new_form)
# 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 form.h])
# 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_OUTPUT([Makefile src/Makefile doc/Makefile])
echo ""
echo "Now type \"make\" and \"make install\" to build and install ncdu"