dnl Process this file with autoconf to produce a configure script. AC_INIT(ssh-crack.c) AM_INIT_AUTOMAKE(ssh-crack, 1.1) AM_CONFIG_HEADER(config.h) dnl Checks for programs. AC_PROG_CC AC_PROG_GCC_OMITFRAMEPOINTER dnl Checks for libraries. dnl Checks for header files. AC_HEADER_DIRENT AC_HEADER_STDC AC_HEADER_SYS_WAIT AC_CHECK_HEADERS(fcntl.h paths.h sgtty.h sys/ioctl.h sys/time.h unistd.h) dnl Checks for typedefs, structures, and compiler characteristics. AC_C_CONST AC_C_INLINE AC_TYPE_OFF_T AC_TYPE_SIZE_T AC_TYPE_UID_T AC_C_CONST AC_C_INLINE AC_C_BIGENDIAN AC_CHECK_SIZEOF(long,4) AC_CHECK_SIZEOF(int,4) AC_CHECK_SIZEOF(short,2) dnl Checks for library functions. AC_FUNC_MEMCMP AC_CHECK_FUNCS(strerror) AC_OUTPUT(Makefile)