configure.ac
author Peter Kovacs <kpeter@inf.elte.hu>
Mon, 26 May 2008 01:35:59 +0200
changeset 159 c7d30f7810e5
parent 91 e28fc773f3c0
child 175 4eb8900a865c
permissions -rw-r--r--
Change the implementation of StoreBoolMap + improve doc (ticket #36)
     1 dnl Process this file with autoconf to produce a configure script.
     2 
     3 dnl Version information.
     4 m4_define([lemon_version_major], [0])
     5 m4_define([lemon_version_minor], [99])
     6 m4_define([lemon_version_micro], [])
     7 m4_define([lemon_version_nano], [])
     8 m4_define([lemon_version_tag], [hg])
     9 m4_define([lemon_hg_revision], [m4_normalize(esyscmd([hg id -i]))])
    10 m4_define([lemon_version], [lemon_version_major().lemon_version_minor()ifelse(lemon_version_micro(), [], [], [.lemon_version_micro()])ifelse(lemon_version_nano(), [], [], [.lemon_version_nano()])ifelse(lemon_version_tag(), [], [], lemon_version_tag(), [hg], [[_]lemon_version_tag()[_]lemon_hg_revision()], [[_]lemon_version_tag()])])
    11 
    12 AC_PREREQ([2.59])
    13 AC_INIT([LEMON], [lemon_version()], [lemon-devel@lemon.cs.elte.hu], [lemon])
    14 AC_CONFIG_AUX_DIR([build-aux])
    15 AC_CONFIG_MACRO_DIR([m4])
    16 AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects nostdinc])
    17 AC_CONFIG_SRCDIR([lemon/list_graph.h])
    18 AC_CONFIG_HEADERS([config.h lemon/config.h])
    19 
    20 lx_cmdline_cxxflags_set=${CXXFLAGS+set}
    21 
    22 dnl Checks for programs.
    23 AC_PROG_CXX
    24 AC_PROG_CXXCPP
    25 AC_PROG_INSTALL
    26 AC_DISABLE_SHARED
    27 AC_PROG_LIBTOOL
    28 
    29 AC_CHECK_PROG([doxygen_found],[doxygen],[yes],[no])
    30 AC_CHECK_PROG([gs_found],[gs],[yes],[no])
    31 
    32 if test x"$lx_cmdline_cxxflags_set" != x"set" -a "$GXX" = yes; then
    33   CXXFLAGS="$CXXFLAGS -Wall -W -Wall -W -Wunused -Wformat=2 -Wctor-dtor-privacy -Wnon-virtual-dtor -Wno-char-subscripts -Wwrite-strings -Wno-char-subscripts -Wreturn-type -Wcast-qual -Wcast-align -Wsign-promo -Woverloaded-virtual -Woverloaded-virtual -ansi -fno-strict-aliasing -Wold-style-cast -Wno-unknown-pragmas"
    34 fi
    35 
    36 dnl Checks for libraries.
    37 LX_CHECK_GLPK
    38 LX_CHECK_CPLEX
    39 LX_CHECK_SOPLEX
    40 
    41 dnl Disable/enable building the demo programs
    42 AC_ARG_ENABLE([demo],
    43 AS_HELP_STRING([--enable-demo], [build the demo programs])
    44 AS_HELP_STRING([--disable-demo], [do not build the demo programs @<:@default@:>@]),
    45               [], [enable_demo=no])
    46 AC_MSG_CHECKING([whether to build the demo programs])
    47 if test x"$enable_demo" != x"no"; then
    48   AC_MSG_RESULT([yes])
    49 else
    50   AC_MSG_RESULT([no])
    51 fi
    52 AM_CONDITIONAL([WANT_DEMO], [test x"$enable_demo" != x"no"])
    53 
    54 dnl Disable/enable building the binary tools
    55 AC_ARG_ENABLE([tools],
    56 AS_HELP_STRING([--enable-tools], [build additional tools @<:@default@:>@])
    57 AS_HELP_STRING([--disable-tools], [do not build additional tools]),
    58               [], [enable_tools=yes])
    59 AC_MSG_CHECKING([whether to build the additional tools])
    60 if test x"$enable_tools" != x"no"; then
    61   AC_MSG_RESULT([yes])
    62 else
    63   AC_MSG_RESULT([no])
    64 fi
    65 AM_CONDITIONAL([WANT_TOOLS], [test x"$enable_tools" != x"no"])
    66 
    67 dnl Disable/enable building the benchmarks
    68 AC_ARG_ENABLE([benchmark],
    69 AS_HELP_STRING([--enable-benchmark], [build the benchmarks])
    70 AS_HELP_STRING([--disable-benchmark], [do not build the benchmarks @<:@default@:>@]),
    71               [], [enable_benchmark=no])
    72 AC_MSG_CHECKING([whether to build the benchmarks])
    73 if test x"$enable_benchmark" != x"no"; then
    74   AC_MSG_RESULT([yes])
    75 else
    76   AC_MSG_RESULT([no])
    77 fi
    78 AM_CONDITIONAL([WANT_BENCHMARK], [test x"$enable_benchmark" != x"no"])
    79 
    80 dnl Checks for header files.
    81 AC_CHECK_HEADERS(limits.h sys/time.h sys/times.h unistd.h)
    82 
    83 dnl Checks for typedefs, structures, and compiler characteristics.
    84 AC_C_CONST
    85 AC_C_INLINE
    86 AC_TYPE_SIZE_T
    87 AC_HEADER_TIME
    88 AC_STRUCT_TM
    89 
    90 dnl Checks for library functions.
    91 AC_HEADER_STDC
    92 AC_CHECK_FUNCS(gettimeofday times ctime_r)
    93 
    94 AC_CONFIG_FILES([
    95 Makefile
    96 doc/Doxyfile
    97 lemon/lemon.pc
    98 ])
    99 
   100 AC_OUTPUT
   101 
   102 echo
   103 echo '****************************** SUMMARY ******************************'
   104 echo
   105 echo Package version............... : $PACKAGE-$VERSION
   106 echo
   107 echo C++ compiler.................. : $CXX
   108 echo C++ compiles flags............ : $CXXFLAGS
   109 echo
   110 echo GLPK support.................. : $lx_glpk_found
   111 echo CPLEX support................. : $lx_cplex_found
   112 echo SOPLEX support................ : $lx_soplex_found
   113 echo
   114 echo Build benchmarks.............. : $enable_benchmark
   115 echo Build demo programs........... : $enable_demo
   116 echo Build additional tools........ : $enable_tools
   117 echo
   118 echo The packace will be installed in
   119 echo -n '  '
   120 echo $prefix.
   121 echo
   122 echo '*********************************************************************'
   123 
   124 echo
   125 echo Configure complete, now type \'make\' and then \'make install\'.
   126 echo