COIN-OR::LEMON - Graph Library

Changeset 2390:8450951a8e2d in lemon-0.x for configure.ac


Ignore:
Timestamp:
03/03/07 17:04:50 (17 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3221
Message:
  • '-Wshadow' seemed to strict therefore removed
  • a tools directory added for useful executables codes
  • tools/lgf-gen.cc (a random graph generator) added
File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure.ac

    r2386 r2390  
    1818
    1919if test x"$lx_cmdline_cxxflags_set" != x"set" -a "$GXX" = yes; then
    20   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 -Wshadow -ansi -fno-strict-aliasing -Wold-style-cast -Wno-unknown-pragmas"
     20  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"
    2121fi
    2222
     
    6767fi
    6868AM_CONDITIONAL([WANT_DEMO], [test x"$enable_demo" != x"no"])
     69
     70dnl Disable/enable building the binary tools
     71AC_ARG_ENABLE([tools],
     72AS_HELP_STRING([--enable-tools], [build additional tools @<:@default@:>@])
     73AS_HELP_STRING([--disable-tools], [do not build additional tools]),
     74              [], [enable_tools=yes])
     75AC_MSG_CHECKING([whether to build the additional tools])
     76if test x"$enable_tools" != x"no"; then
     77  AC_MSG_RESULT([yes])
     78else
     79  AC_MSG_RESULT([no])
     80fi
     81AM_CONDITIONAL([WANT_TOOLS], [test x"$enable_tools" != x"no"])
    6982
    7083dnl Disable/enable building the benchmarks
     
    119132echo build benchmarks.............. : $enable_benchmark
    120133echo build demo programs........... : $enable_demo
     134echo build additional tools........ : $enable_tools
    121135echo
    122136echo The packace will be installed in
Note: See TracChangeset for help on using the changeset viewer.