configure.ac
author ladanyi
Tue, 14 Sep 2004 09:53:57 +0000
changeset 848 e38108b464c5
parent 716 e7f13f60fcfd
child 921 818510fa3d99
permissions -rw-r--r--
Set 'svn:ignore' property.
     1 dnl Process this file with autoconf to produce a configure script.
     2 AC_INIT([HugoLib], [0.2], [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 CXXFLAGS="$CXXFLAGS -Wall"
    13 
    14 dnl Checks for libraries.
    15 
    16 dnl Checks for header files.
    17 AC_CHECK_HEADERS(limits.h sys/time.h sys/times.h unistd.h)
    18 
    19 dnl Checks for typedefs, structures, and compiler characteristics.
    20 AC_C_CONST
    21 AC_C_INLINE
    22 AC_TYPE_SIZE_T
    23 AC_HEADER_TIME
    24 AC_STRUCT_TM
    25 
    26 dnl Checks for library functions.
    27 AC_HEADER_STDC
    28 AC_CHECK_FUNCS(gettimeofday)
    29 
    30 AC_CONFIG_FILES([Makefile doc/Makefile src/Makefile src/hugo/Makefile src/test/Makefile src/benchmark/Makefile])
    31 AC_OUTPUT