Codebase list gtkwave / upstream/1.3.81 configure.scan
upstream/1.3.81

Tree @upstream/1.3.81 (Download .tar.gz)

configure.scan @upstream/1.3.81raw · history · blame

dnl Process this file with autoconf to produce a configure script.
AC_INIT(src/aet.c)

dnl Checks for programs.
AC_PROG_CC
AC_PROG_RANLIB
AC_PROG_MAKE_SET

dnl Checks for libraries.

dnl Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS(fcntl.h malloc.h strings.h unistd.h)

dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_TYPE_OFF_T
AC_TYPE_SIZE_T
AC_HEADER_TIME
AC_STRUCT_TM

dnl Checks for library functions.
AC_FUNC_ALLOCA
AC_FUNC_MEMCMP
AC_FUNC_MMAP
AC_FUNC_SETVBUF_REVERSED
AC_FUNC_VPRINTF
AC_CHECK_FUNCS(strdup strerror strstr)

AC_OUTPUT(src/helpers/Makefile src/libz/Makefile Makefile src/Makefile src/libbz2/Makefile)