configure.ac
author alpar
Wed, 23 Feb 2005 10:53:17 +0000
changeset 1171 f426c84a4e00
parent 1163 eb4e28715baf
child 1304 c9c2e90b2342
permissions -rw-r--r--
Experimental autopackage specfile.
     1 dnl Process this file with autoconf to produce a configure script.
     2 AC_INIT([LEMON], [0.4], [etik-ol@cs.elte.hu], [lemon])
     3 AC_CONFIG_AUX_DIR([config])
     4 AM_INIT_AUTOMAKE(1.7)
     5 AC_CONFIG_SRCDIR([src/lemon/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 times ctime_r)
    29 
    30 AC_CONFIG_FILES([Makefile doc/Makefile src/Makefile src/lemon/Makefile src/test/Makefile src/benchmark/Makefile src/demo/Makefile autopackage/default.apspec])
    31 AC_OUTPUT