dnl Process this file with autoconf to produce a configure script. AC_INIT([HugoLib], [0.2], [etik-ol@cs.elte.hu], [hugo]) AC_CONFIG_AUX_DIR([config]) AM_INIT_AUTOMAKE(1.7) AC_CONFIG_SRCDIR([src/hugo/invalid.h]) AC_PREREQ(2.57) dnl Checks for programs. AC_PROG_CC AC_PROG_CXX CXXFLAGS="$CXXFLAGS -Wall" dnl Checks for libraries. dnl Checks for header files. AC_CHECK_HEADERS(limits.h sys/time.h sys/times.h unistd.h) dnl Checks for typedefs, structures, and compiler characteristics. AC_C_CONST AC_C_INLINE AC_TYPE_SIZE_T AC_HEADER_TIME AC_STRUCT_TM dnl Checks for library functions. AC_HEADER_STDC AC_CHECK_FUNCS(gettimeofday) AC_CONFIG_FILES([Makefile doc/Makefile src/Makefile src/hugo/Makefile src/test/Makefile src/benchmark/Makefile]) AC_OUTPUT