diff -r 5c5d970ef2f0 -r 69bde1d90c04 configure.ac --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/configure.ac Thu May 06 13:48:04 2004 +0000 @@ -0,0 +1,29 @@ +dnl Process this file with autoconf to produce a configure script. +AC_INIT([HugoLib], [0.1], [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 + +dnl Checks for libraries. + +dnl Checks for header files. +AC_CHECK_HEADERS(limits.h sys/time.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]) +AC_OUTPUT