configure.ac
changeset 618 e944d741f472
child 704 f450618b8f98
equal deleted inserted replaced
-1:000000000000 0:3fe0a1963c9c
       
     1 dnl Process this file with autoconf to produce a configure script.
       
     2 AC_INIT([HugoLib], [0.1], [etik-ol@cs.elte.hu], [hugo])
       
     3 AC_CONFIG_AUX_DIR([config])
       
     4 AM_INIT_AUTOMAKE(1.7)
       
     5 AC_CONFIG_SRCDIR([src/hugo/invalid.h])
       
     6 AC_PREREQ(2.57)
       
     7 
       
     8 dnl Checks for programs.
       
     9 AC_PROG_CC
       
    10 AC_PROG_CXX
       
    11 
       
    12 dnl Checks for libraries.
       
    13 
       
    14 dnl Checks for header files.
       
    15 AC_CHECK_HEADERS(limits.h sys/time.h unistd.h)
       
    16 
       
    17 dnl Checks for typedefs, structures, and compiler characteristics.
       
    18 AC_C_CONST
       
    19 AC_C_INLINE
       
    20 AC_TYPE_SIZE_T
       
    21 AC_HEADER_TIME
       
    22 AC_STRUCT_TM
       
    23 
       
    24 dnl Checks for library functions.
       
    25 AC_HEADER_STDC
       
    26 AC_CHECK_FUNCS(gettimeofday)
       
    27 
       
    28 AC_CONFIG_FILES([Makefile doc/Makefile src/Makefile src/hugo/Makefile src/test/Makefile])
       
    29 AC_OUTPUT