COIN-OR::LEMON - Graph Library

Changeset 1348:115e42a5b0f7 in lemon-0.x


Ignore:
Timestamp:
04/13/05 08:49:42 (19 years ago)
Author:
Akos Ladanyi
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1792
Message:
  • added autoheader (just to reduce the compliers argument list)
  • don't add -Wall to CXXFLAGS when using Intel's compiler (because this causes a lot of remarks)
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • bootstrap

    r1304 r1348  
    5454aclocal=aclocal
    5555autoconf=autoconf
     56autoheader=autoheader
    5657
    5758if test -n "$amver"
     
    6465then
    6566  autoconf=autoconf-$acver
     67  autoheader=autoheader-$acver
    6668fi
    6769
    68 $aclocal \
     70set -x
     71$aclocal -I config \
    6972&& libtoolize --force --copy \
     73&& $autoheader \
    7074&& $automake --add-missing --copy --gnu \
    7175&& $autoconf
  • configure.ac

    r1327 r1348  
    22AC_INIT([LEMON], [0.4], [etik-ol@cs.elte.hu], [lemon])
    33AC_CONFIG_AUX_DIR([config])
    4 AM_INIT_AUTOMAKE(1.7)
     4AM_INIT_AUTOMAKE
    55AC_CONFIG_SRCDIR([src/lemon/invalid.h])
     6AM_CONFIG_HEADER([config.h])
    67AC_PREREQ(2.57)
    78
     
    1213AC_PROG_LIBTOOL
    1314
    14 CXXFLAGS="$CXXFLAGS -Wall"
     15dnl I know this is not perfect. A better solution will come soon.
     16if test $CXX != icc -a $CXX != icpc; then
     17  CXXFLAGS="$CXXFLAGS -Wall"
     18fi
    1519
    1620dnl Checks for libraries.
Note: See TracChangeset for help on using the changeset viewer.