configure.ac
author Akos Ladanyi <ladanyi@tmit.bme.hu>
Sun, 13 Apr 2008 20:15:45 +0200
changeset 142 8b703d177341
parent 64 761622e5ed4c
child 153 976a014b3797
permissions -rw-r--r--
Improved LEMON_FUNCTION_NAME macro.
It should work fine with GCC and the MS C++ compilers. Otherwise it reverts to
using the __func__ variable which is C99, but I couldn't find a better
alternative.
     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 
    31 if test x"$lx_cmdline_cxxflags_set" != x"set" -a "$GXX" = yes; then
    32   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"
    33 fi
    34 
    35 dnl Checks for libraries.
    36 LX_CHECK_GLPK
    37 LX_CHECK_CPLEX
    38 LX_CHECK_SOPLEX
    39 
    40 dnl Disable/enable building the demo programs
    41 AC_ARG_ENABLE([demo],
    42 AS_HELP_STRING([--enable-demo], [build the demo programs])
    43 AS_HELP_STRING([--disable-demo], [do not build the demo programs @<:@default@:>@]),
    44               [], [enable_demo=no])
    45 AC_MSG_CHECKING([whether to build the demo programs])
    46 if test x"$enable_demo" != x"no"; then
    47   AC_MSG_RESULT([yes])
    48 else
    49   AC_MSG_RESULT([no])
    50 fi
    51 AM_CONDITIONAL([WANT_DEMO], [test x"$enable_demo" != x"no"])
    52 
    53 dnl Disable/enable building the binary tools
    54 AC_ARG_ENABLE([tools],
    55 AS_HELP_STRING([--enable-tools], [build additional tools @<:@default@:>@])
    56 AS_HELP_STRING([--disable-tools], [do not build additional tools]),
    57               [], [enable_tools=yes])
    58 AC_MSG_CHECKING([whether to build the additional tools])
    59 if test x"$enable_tools" != x"no"; then
    60   AC_MSG_RESULT([yes])
    61 else
    62   AC_MSG_RESULT([no])
    63 fi
    64 AM_CONDITIONAL([WANT_TOOLS], [test x"$enable_tools" != x"no"])
    65 
    66 dnl Disable/enable building the benchmarks
    67 AC_ARG_ENABLE([benchmark],
    68 AS_HELP_STRING([--enable-benchmark], [build the benchmarks])
    69 AS_HELP_STRING([--disable-benchmark], [do not build the benchmarks @<:@default@:>@]),
    70               [], [enable_benchmark=no])
    71 AC_MSG_CHECKING([whether to build the benchmarks])
    72 if test x"$enable_benchmark" != x"no"; then
    73   AC_MSG_RESULT([yes])
    74 else
    75   AC_MSG_RESULT([no])
    76 fi
    77 AM_CONDITIONAL([WANT_BENCHMARK], [test x"$enable_benchmark" != x"no"])
    78 
    79 dnl Checks for header files.
    80 AC_CHECK_HEADERS(limits.h sys/time.h sys/times.h unistd.h)
    81 
    82 dnl Checks for typedefs, structures, and compiler characteristics.
    83 AC_C_CONST
    84 AC_C_INLINE
    85 AC_TYPE_SIZE_T
    86 AC_HEADER_TIME
    87 AC_STRUCT_TM
    88 
    89 dnl Checks for library functions.
    90 AC_HEADER_STDC
    91 AC_CHECK_FUNCS(gettimeofday times ctime_r)
    92 
    93 AC_CONFIG_FILES([
    94 Makefile
    95 doc/Doxyfile
    96 lemon/lemon.pc
    97 ])
    98 
    99 AC_OUTPUT
   100 
   101 echo
   102 echo '****************************** SUMMARY ******************************'
   103 echo
   104 echo Package version............... : $PACKAGE-$VERSION
   105 echo
   106 echo C++ compiler.................. : $CXX
   107 echo C++ compiles flags............ : $CXXFLAGS
   108 echo
   109 echo GLPK support.................. : $lx_glpk_found
   110 echo CPLEX support................. : $lx_cplex_found
   111 echo SOPLEX support................ : $lx_soplex_found
   112 echo
   113 echo Build benchmarks.............. : $enable_benchmark
   114 echo Build demo programs........... : $enable_demo
   115 echo Build additional tools........ : $enable_tools
   116 echo
   117 echo The packace will be installed in
   118 echo -n '  '
   119 echo $prefix.
   120 echo
   121 echo '*********************************************************************'
   122 
   123 echo
   124 echo Configure complete, now type \'make\' and then \'make install\'.
   125 echo