configure.ac
author Alpar Juttner <alpar@cs.elte.hu>
Sun, 21 Sep 2008 08:48:08 +0100
changeset 273 5d12d5c80ac9
parent 259 362415050b29
child 296 9768e60aa4e1
permissions -rw-r--r--
Better versioning (#144)
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@1
    22
lx_cmdline_cxxflags_set=${CXXFLAGS+set}
ladanyi@1
    23
ladanyi@1
    24
dnl Checks for programs.
ladanyi@1
    25
AC_PROG_CXX
ladanyi@1
    26
AC_PROG_CXXCPP
ladanyi@1
    27
AC_PROG_INSTALL
ladanyi@1
    28
AC_DISABLE_SHARED
ladanyi@1
    29
AC_PROG_LIBTOOL
ladanyi@1
    30
ladanyi@60
    31
AC_CHECK_PROG([doxygen_found],[doxygen],[yes],[no])
ladanyi@153
    32
AC_CHECK_PROG([gs_found],[gs],[yes],[no])
ladanyi@60
    33
alpar@225
    34
dnl Set custom compiler flags when using g++.
ladanyi@1
    35
if test x"$lx_cmdline_cxxflags_set" != x"set" -a "$GXX" = yes; then
ladanyi@1
    36
  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"
ladanyi@1
    37
fi
ladanyi@1
    38
ladanyi@1
    39
dnl Checks for libraries.
ladanyi@259
    40
#LX_CHECK_GLPK
ladanyi@259
    41
#LX_CHECK_CPLEX
ladanyi@259
    42
#LX_CHECK_SOPLEX
ladanyi@1
    43
alpar@225
    44
dnl Disable/enable building the demo programs.
ladanyi@1
    45
AC_ARG_ENABLE([demo],
ladanyi@1
    46
AS_HELP_STRING([--enable-demo], [build the demo programs])
ladanyi@1
    47
AS_HELP_STRING([--disable-demo], [do not build the demo programs @<:@default@:>@]),
ladanyi@1
    48
              [], [enable_demo=no])
ladanyi@1
    49
AC_MSG_CHECKING([whether to build the demo programs])
ladanyi@1
    50
if test x"$enable_demo" != x"no"; then
ladanyi@1
    51
  AC_MSG_RESULT([yes])
ladanyi@1
    52
else
ladanyi@1
    53
  AC_MSG_RESULT([no])
ladanyi@1
    54
fi
ladanyi@1
    55
AM_CONDITIONAL([WANT_DEMO], [test x"$enable_demo" != x"no"])
ladanyi@1
    56
alpar@225
    57
dnl Disable/enable building the binary tools.
ladanyi@1
    58
AC_ARG_ENABLE([tools],
ladanyi@1
    59
AS_HELP_STRING([--enable-tools], [build additional tools @<:@default@:>@])
ladanyi@1
    60
AS_HELP_STRING([--disable-tools], [do not build additional tools]),
ladanyi@1
    61
              [], [enable_tools=yes])
ladanyi@1
    62
AC_MSG_CHECKING([whether to build the additional tools])
ladanyi@1
    63
if test x"$enable_tools" != x"no"; then
ladanyi@1
    64
  AC_MSG_RESULT([yes])
ladanyi@1
    65
else
ladanyi@1
    66
  AC_MSG_RESULT([no])
ladanyi@1
    67
fi
ladanyi@1
    68
AM_CONDITIONAL([WANT_TOOLS], [test x"$enable_tools" != x"no"])
ladanyi@1
    69
alpar@225
    70
dnl Disable/enable building the benchmarks.
ladanyi@1
    71
AC_ARG_ENABLE([benchmark],
ladanyi@1
    72
AS_HELP_STRING([--enable-benchmark], [build the benchmarks])
ladanyi@1
    73
AS_HELP_STRING([--disable-benchmark], [do not build the benchmarks @<:@default@:>@]),
ladanyi@1
    74
              [], [enable_benchmark=no])
ladanyi@1
    75
AC_MSG_CHECKING([whether to build the benchmarks])
ladanyi@1
    76
if test x"$enable_benchmark" != x"no"; then
ladanyi@1
    77
  AC_MSG_RESULT([yes])
ladanyi@1
    78
else
ladanyi@1
    79
  AC_MSG_RESULT([no])
ladanyi@1
    80
fi
ladanyi@1
    81
AM_CONDITIONAL([WANT_BENCHMARK], [test x"$enable_benchmark" != x"no"])
ladanyi@1
    82
ladanyi@1
    83
dnl Checks for header files.
ladanyi@1
    84
AC_CHECK_HEADERS(limits.h sys/time.h sys/times.h unistd.h)
ladanyi@1
    85
ladanyi@1
    86
dnl Checks for typedefs, structures, and compiler characteristics.
ladanyi@1
    87
AC_C_CONST
ladanyi@1
    88
AC_C_INLINE
ladanyi@1
    89
AC_TYPE_SIZE_T
ladanyi@1
    90
AC_HEADER_TIME
ladanyi@1
    91
AC_STRUCT_TM
ladanyi@1
    92
ladanyi@1
    93
dnl Checks for library functions.
ladanyi@1
    94
AC_HEADER_STDC
ladanyi@1
    95
AC_CHECK_FUNCS(gettimeofday times ctime_r)
ladanyi@1
    96
alpar@219
    97
dnl Add dependencies on files generated by configure.
alpar@219
    98
AC_SUBST([CONFIG_STATUS_DEPENDENCIES],
alpar@219
    99
  ['$(top_srcdir)/doc/Doxyfile.in $(top_srcdir)/lemon/lemon.pc.in'])
alpar@219
   100
ladanyi@1
   101
AC_CONFIG_FILES([
ladanyi@1
   102
Makefile
ladanyi@1
   103
doc/Doxyfile
ladanyi@1
   104
lemon/lemon.pc
ladanyi@1
   105
])
ladanyi@1
   106
ladanyi@1
   107
AC_OUTPUT
ladanyi@1
   108
ladanyi@1
   109
echo
ladanyi@1
   110
echo '****************************** SUMMARY ******************************'
ladanyi@1
   111
echo
ladanyi@1
   112
echo Package version............... : $PACKAGE-$VERSION
ladanyi@1
   113
echo
ladanyi@1
   114
echo C++ compiler.................. : $CXX
ladanyi@1
   115
echo C++ compiles flags............ : $CXXFLAGS
ladanyi@1
   116
echo
ladanyi@259
   117
#echo GLPK support.................. : $lx_glpk_found
ladanyi@259
   118
#echo CPLEX support................. : $lx_cplex_found
ladanyi@259
   119
#echo SOPLEX support................ : $lx_soplex_found
ladanyi@259
   120
#echo
alpar@55
   121
echo Build benchmarks.............. : $enable_benchmark
alpar@55
   122
echo Build demo programs........... : $enable_demo
alpar@55
   123
echo Build additional tools........ : $enable_tools
ladanyi@1
   124
echo
ladanyi@1
   125
echo The packace will be installed in
ladanyi@1
   126
echo -n '  '
ladanyi@1
   127
echo $prefix.
ladanyi@1
   128
echo
ladanyi@1
   129
echo '*********************************************************************'
ladanyi@1
   130
ladanyi@1
   131
echo
alpar@55
   132
echo Configure complete, now type \'make\' and then \'make install\'.
ladanyi@1
   133
echo