configure.ac
changeset 542 69bde1d90c04
child 704 f450618b8f98
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/configure.ac	Thu May 06 13:48:04 2004 +0000
     1.3 @@ -0,0 +1,29 @@
     1.4 +dnl Process this file with autoconf to produce a configure script.
     1.5 +AC_INIT([HugoLib], [0.1], [etik-ol@cs.elte.hu], [hugo])
     1.6 +AC_CONFIG_AUX_DIR([config])
     1.7 +AM_INIT_AUTOMAKE(1.7)
     1.8 +AC_CONFIG_SRCDIR([src/hugo/invalid.h])
     1.9 +AC_PREREQ(2.57)
    1.10 +
    1.11 +dnl Checks for programs.
    1.12 +AC_PROG_CC
    1.13 +AC_PROG_CXX
    1.14 +
    1.15 +dnl Checks for libraries.
    1.16 +
    1.17 +dnl Checks for header files.
    1.18 +AC_CHECK_HEADERS(limits.h sys/time.h unistd.h)
    1.19 +
    1.20 +dnl Checks for typedefs, structures, and compiler characteristics.
    1.21 +AC_C_CONST
    1.22 +AC_C_INLINE
    1.23 +AC_TYPE_SIZE_T
    1.24 +AC_HEADER_TIME
    1.25 +AC_STRUCT_TM
    1.26 +
    1.27 +dnl Checks for library functions.
    1.28 +AC_HEADER_STDC
    1.29 +AC_CHECK_FUNCS(gettimeofday)
    1.30 +
    1.31 +AC_CONFIG_FILES([Makefile doc/Makefile src/Makefile src/hugo/Makefile src/test/Makefile])
    1.32 +AC_OUTPUT