configure.ac
changeset 226 4c9d85f5dc93
parent 219 b9c6a47c977b
parent 225 c5a40fc54f1a
child 236 da953e387d31
     1.1 --- a/configure.ac	Thu Jul 17 17:39:53 2008 +0200
     1.2 +++ b/configure.ac	Fri Jul 18 16:47:27 2008 +0100
     1.3 @@ -6,7 +6,7 @@
     1.4  m4_define([lemon_version], [ifelse(lemon_version_number(), [], [lemon_hg_revision()], [lemon_version_number()])])
     1.5  
     1.6  AC_PREREQ([2.59])
     1.7 -AC_INIT([LEMON], [lemon_version()], [lemon-devel@lemon.cs.elte.hu], [lemon])
     1.8 +AC_INIT([Lemon], [lemon_version()], [lemon-user@lemon.cs.elte.hu], [lemon])
     1.9  AC_CONFIG_AUX_DIR([build-aux])
    1.10  AC_CONFIG_MACRO_DIR([m4])
    1.11  AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects nostdinc])
    1.12 @@ -25,6 +25,7 @@
    1.13  AC_CHECK_PROG([doxygen_found],[doxygen],[yes],[no])
    1.14  AC_CHECK_PROG([gs_found],[gs],[yes],[no])
    1.15  
    1.16 +dnl Set custom compiler flags when using g++.
    1.17  if test x"$lx_cmdline_cxxflags_set" != x"set" -a "$GXX" = yes; then
    1.18    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"
    1.19  fi
    1.20 @@ -34,7 +35,7 @@
    1.21  LX_CHECK_CPLEX
    1.22  LX_CHECK_SOPLEX
    1.23  
    1.24 -dnl Disable/enable building the demo programs
    1.25 +dnl Disable/enable building the demo programs.
    1.26  AC_ARG_ENABLE([demo],
    1.27  AS_HELP_STRING([--enable-demo], [build the demo programs])
    1.28  AS_HELP_STRING([--disable-demo], [do not build the demo programs @<:@default@:>@]),
    1.29 @@ -47,7 +48,7 @@
    1.30  fi
    1.31  AM_CONDITIONAL([WANT_DEMO], [test x"$enable_demo" != x"no"])
    1.32  
    1.33 -dnl Disable/enable building the binary tools
    1.34 +dnl Disable/enable building the binary tools.
    1.35  AC_ARG_ENABLE([tools],
    1.36  AS_HELP_STRING([--enable-tools], [build additional tools @<:@default@:>@])
    1.37  AS_HELP_STRING([--disable-tools], [do not build additional tools]),
    1.38 @@ -60,7 +61,7 @@
    1.39  fi
    1.40  AM_CONDITIONAL([WANT_TOOLS], [test x"$enable_tools" != x"no"])
    1.41  
    1.42 -dnl Disable/enable building the benchmarks
    1.43 +dnl Disable/enable building the benchmarks.
    1.44  AC_ARG_ENABLE([benchmark],
    1.45  AS_HELP_STRING([--enable-benchmark], [build the benchmarks])
    1.46  AS_HELP_STRING([--disable-benchmark], [do not build the benchmarks @<:@default@:>@]),