# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_INIT([sphw-b01902062], [1]) AC_CONFIG_SRCDIR([main.c]) AC_CONFIG_HEADERS([config.h]) AM_INIT_AUTOMAKE([foreign]) AM_SILENT_RULES([yes]) # Checks for programs. AC_PROG_CC AC_PROG_CC_C99 AC_C_VOLATILE AC_PROG_RANLIB # Checks for typedefs, structures, and compiler characteristics. AC_CHECK_HEADER_STDBOOL AC_TYPE_SIZE_T AC_TYPE_SSIZE_T # Checks for library functions. AC_FUNC_MALLOC AC_CHECK_FUNCS([getdtablesize]) AC_CONFIG_FILES([Makefile]) AC_OUTPUT