configure.ac
author alpar
Mon, 18 Apr 2005 13:34:23 +0000
changeset 1365 c280de819a73
parent 1349 83388a4aa3af
child 1370 76a3f46d361c
permissions -rw-r--r--
src/work is moved to hugo_loc
     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
     5 AC_CONFIG_SRCDIR([src/lemon/invalid.h])
     6 AM_CONFIG_HEADER([config.h])
     7 AC_PREREQ([2.53])
     8 
     9 dnl Save user defined CXXFLAGS
    10 dnl lx_user_cxxflags="$CXXFLAGS"
    11 
    12 dnl Checks for programs.
    13 AC_PROG_CXX
    14 AC_PROG_CXXCPP
    15 AC_PROG_INSTALL
    16 AC_DISABLE_SHARED
    17 AC_PROG_LIBTOOL
    18 
    19 if test $CXX != icc -a $CXX != icpc; then
    20   CXXFLAGS="$CXXFLAGS -Wall -W"
    21 fi
    22 
    23 dnl This is tested only with gcc-3.4 and icc-8.0
    24 dnl LX_SET_CXXFLAGS
    25 
    26 dnl Checks for libraries.
    27 LX_CHECK_GLPK
    28 
    29 dnl Checks for header files.
    30 AC_CHECK_HEADERS(limits.h sys/time.h sys/times.h unistd.h)
    31 
    32 dnl Checks for typedefs, structures, and compiler characteristics.
    33 AC_C_CONST
    34 AC_C_INLINE
    35 AC_TYPE_SIZE_T
    36 AC_HEADER_TIME
    37 AC_STRUCT_TM
    38 
    39 dnl Checks for library functions.
    40 AC_HEADER_STDC
    41 AC_CHECK_FUNCS(gettimeofday times ctime_r)
    42 
    43 AC_CONFIG_FILES([
    44 Makefile
    45 autopackage/default.apspec
    46 doc/Makefile
    47 doc/Doxyfile
    48 src/Makefile
    49 src/lemon/Makefile
    50 src/lemon/lemon.pc
    51 src/benchmark/Makefile
    52 src/demo/Makefile
    53 src/test/Makefile
    54 ])
    55 
    56 AC_OUTPUT