configure.ac
author Akos Ladanyi <ladanyi@tmit.bme.hu>
Fri, 29 May 2009 11:40:53 +0100
changeset 678 d1e1cd94bf49
parent 627 20dac2104519
child 680 257e91516e09
permissions -rw-r--r--
Put the version string into config.h

Also make it possible to set the version using the LEMON_VERSION environment
variable, and use the hg revision as version string in case this variable is
unset.
ladanyi@1
     1
dnl Process this file with autoconf to produce a configure script.
ladanyi@1
     2
ladanyi@1
     3
dnl Version information.
alpar@273
     4
m4_define([lemon_version_number],
alpar@273
     5
	[m4_normalize(esyscmd([echo ${LEMON_VERSION}]))])
alpar@273
     6
dnl m4_define([lemon_version_number], [])
alpar@273
     7
m4_define([lemon_hg_path], [m4_normalize(esyscmd([./scripts/chg-len.py]))])
alpar@19
     8
m4_define([lemon_hg_revision], [m4_normalize(esyscmd([hg id -i]))])
alpar@273
     9
m4_define([lemon_version], [ifelse(lemon_version_number(),
alpar@273
    10
			   [],
alpar@273
    11
			   [lemon_hg_path().lemon_hg_revision()],
alpar@273
    12
			   [lemon_version_number()])])
ladanyi@1
    13
ladanyi@1
    14
AC_PREREQ([2.59])
ladanyi@236
    15
AC_INIT([LEMON], [lemon_version()], [lemon-user@lemon.cs.elte.hu], [lemon])
ladanyi@1
    16
AC_CONFIG_AUX_DIR([build-aux])
ladanyi@1
    17
AC_CONFIG_MACRO_DIR([m4])
ladanyi@64
    18
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects nostdinc])
ladanyi@1
    19
AC_CONFIG_SRCDIR([lemon/list_graph.h])
ladanyi@1
    20
AC_CONFIG_HEADERS([config.h lemon/config.h])
ladanyi@1
    21
ladanyi@678
    22
AC_DEFINE([LEMON_VERSION], [lemon_version()], [The version string])
ladanyi@678
    23
ladanyi@296
    24
dnl Do compilation tests using the C++ compiler.
ladanyi@296
    25
AC_LANG([C++])
ladanyi@296
    26
alpar@496
    27
dnl Check the existence of long long type.
alpar@496
    28
AC_CHECK_TYPE(long long, [long_long_found=yes], [long_long_found=no])
alpar@496
    29
if test x"$long_long_found" = x"yes"; then
ladanyi@511
    30
  AC_DEFINE([LEMON_HAVE_LONG_LONG], [1], [Define to 1 if you have long long.])
alpar@496
    31
fi
alpar@496
    32
ladanyi@1
    33
dnl Checks for programs.
ladanyi@1
    34
AC_PROG_CXX
ladanyi@1
    35
AC_PROG_CXXCPP
ladanyi@1
    36
AC_PROG_INSTALL
ladanyi@1
    37
AC_DISABLE_SHARED
ladanyi@1
    38
AC_PROG_LIBTOOL
ladanyi@1
    39
ladanyi@60
    40
AC_CHECK_PROG([doxygen_found],[doxygen],[yes],[no])
ladanyi@153
    41
AC_CHECK_PROG([gs_found],[gs],[yes],[no])
ladanyi@60
    42
ladanyi@296
    43
dnl Detect Intel compiler.
ladanyi@296
    44
AC_MSG_CHECKING([whether we are using the Intel C++ compiler])
ladanyi@296
    45
AC_COMPILE_IFELSE([#ifndef __INTEL_COMPILER
ladanyi@296
    46
choke me
ladanyi@296
    47
#endif], [ICC=[yes]], [ICC=[no]])
ladanyi@296
    48
if test x"$ICC" = x"yes"; then
ladanyi@296
    49
  AC_MSG_RESULT([yes])
ladanyi@296
    50
else
ladanyi@296
    51
  AC_MSG_RESULT([no])
ladanyi@296
    52
fi
ladanyi@296
    53
alpar@225
    54
dnl Set custom compiler flags when using g++.
ladanyi@363
    55
if test "$GXX" = yes -a "$ICC" = no; then
ladanyi@363
    56
  WARNINGCXXFLAGS="-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 -ansi -fno-strict-aliasing -Wold-style-cast -Wno-unknown-pragmas"
ladanyi@1
    57
fi
ladanyi@363
    58
AC_SUBST([WARNINGCXXFLAGS])
ladanyi@1
    59
ladanyi@1
    60
dnl Checks for libraries.
deba@458
    61
LX_CHECK_GLPK
deba@458
    62
LX_CHECK_CPLEX
deba@458
    63
LX_CHECK_SOPLEX
ladanyi@568
    64
LX_CHECK_COIN
ladanyi@1
    65
alpar@457
    66
AM_CONDITIONAL([HAVE_LP], [test x"$lx_lp_found" = x"yes"])
alpar@457
    67
AM_CONDITIONAL([HAVE_MIP], [test x"$lx_mip_found" = x"yes"])
ladanyi@1
    68
alpar@225
    69
dnl Disable/enable building the binary tools.
ladanyi@1
    70
AC_ARG_ENABLE([tools],
ladanyi@1
    71
AS_HELP_STRING([--enable-tools], [build additional tools @<:@default@:>@])
ladanyi@1
    72
AS_HELP_STRING([--disable-tools], [do not build additional tools]),
ladanyi@1
    73
              [], [enable_tools=yes])
ladanyi@1
    74
AC_MSG_CHECKING([whether to build the additional tools])
ladanyi@1
    75
if test x"$enable_tools" != x"no"; then
ladanyi@1
    76
  AC_MSG_RESULT([yes])
ladanyi@1
    77
else
ladanyi@1
    78
  AC_MSG_RESULT([no])
ladanyi@1
    79
fi
ladanyi@1
    80
AM_CONDITIONAL([WANT_TOOLS], [test x"$enable_tools" != x"no"])
ladanyi@1
    81
ladanyi@1
    82
dnl Checks for header files.
ladanyi@1
    83
AC_CHECK_HEADERS(limits.h sys/time.h sys/times.h unistd.h)
ladanyi@1
    84
ladanyi@1
    85
dnl Checks for typedefs, structures, and compiler characteristics.
ladanyi@1
    86
AC_C_CONST
ladanyi@1
    87
AC_C_INLINE
ladanyi@1
    88
AC_TYPE_SIZE_T
ladanyi@1
    89
AC_HEADER_TIME
ladanyi@1
    90
AC_STRUCT_TM
ladanyi@1
    91
ladanyi@1
    92
dnl Checks for library functions.
ladanyi@1
    93
AC_HEADER_STDC
ladanyi@1
    94
AC_CHECK_FUNCS(gettimeofday times ctime_r)
ladanyi@1
    95
alpar@219
    96
dnl Add dependencies on files generated by configure.
alpar@219
    97
AC_SUBST([CONFIG_STATUS_DEPENDENCIES],
alpar@480
    98
  ['$(top_srcdir)/doc/Doxyfile.in $(top_srcdir)/lemon/lemon.pc.in $(top_srcdir)/cmake/version.cmake.in'])
alpar@219
    99
ladanyi@1
   100
AC_CONFIG_FILES([
ladanyi@1
   101
Makefile
ladanyi@564
   102
demo/Makefile
alpar@480
   103
cmake/version.cmake
ladanyi@1
   104
doc/Doxyfile
ladanyi@1
   105
lemon/lemon.pc
ladanyi@1
   106
])
ladanyi@1
   107
ladanyi@1
   108
AC_OUTPUT
ladanyi@1
   109
ladanyi@1
   110
echo
ladanyi@1
   111
echo '****************************** SUMMARY ******************************'
ladanyi@1
   112
echo
ladanyi@1
   113
echo Package version............... : $PACKAGE-$VERSION
ladanyi@1
   114
echo
ladanyi@1
   115
echo C++ compiler.................. : $CXX
ladanyi@363
   116
echo C++ compiles flags............ : $WARNINGCXXFLAGS $CXXFLAGS
ladanyi@1
   117
echo
alpar@496
   118
echo Compiler supports long long... : $long_long_found
alpar@496
   119
echo
deba@458
   120
echo GLPK support.................. : $lx_glpk_found
deba@458
   121
echo CPLEX support................. : $lx_cplex_found
deba@458
   122
echo SOPLEX support................ : $lx_soplex_found
deba@459
   123
echo CLP support................... : $lx_clp_found
deba@567
   124
echo CBC support................... : $lx_cbc_found
deba@458
   125
echo
alpar@55
   126
echo Build additional tools........ : $enable_tools
ladanyi@1
   127
echo
ladanyi@1
   128
echo The packace will be installed in
ladanyi@1
   129
echo -n '  '
ladanyi@1
   130
echo $prefix.
ladanyi@1
   131
echo
ladanyi@1
   132
echo '*********************************************************************'
ladanyi@1
   133
ladanyi@1
   134
echo
alpar@55
   135
echo Configure complete, now type \'make\' and then \'make install\'.
ladanyi@1
   136
echo