# HG changeset patch # User ladanyi # Date 1113374982 0 # Node ID 115e42a5b0f7386d0680e52c5b58695b17673446 # Parent c0f6f251e8932a1c60835770a59bcb5b2f6c74cf - 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) diff -r c0f6f251e893 -r 115e42a5b0f7 bootstrap --- a/bootstrap Tue Apr 12 19:03:18 2005 +0000 +++ b/bootstrap Wed Apr 13 06:49:42 2005 +0000 @@ -53,6 +53,7 @@ automake=automake aclocal=aclocal autoconf=autoconf +autoheader=autoheader if test -n "$amver" then @@ -63,9 +64,12 @@ if test -n "$acver" then autoconf=autoconf-$acver + autoheader=autoheader-$acver fi -$aclocal \ +set -x +$aclocal -I config \ && libtoolize --force --copy \ +&& $autoheader \ && $automake --add-missing --copy --gnu \ && $autoconf diff -r c0f6f251e893 -r 115e42a5b0f7 configure.ac --- a/configure.ac Tue Apr 12 19:03:18 2005 +0000 +++ b/configure.ac Wed Apr 13 06:49:42 2005 +0000 @@ -1,8 +1,9 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT([LEMON], [0.4], [etik-ol@cs.elte.hu], [lemon]) AC_CONFIG_AUX_DIR([config]) -AM_INIT_AUTOMAKE(1.7) +AM_INIT_AUTOMAKE AC_CONFIG_SRCDIR([src/lemon/invalid.h]) +AM_CONFIG_HEADER([config.h]) AC_PREREQ(2.57) dnl Checks for programs. @@ -11,7 +12,10 @@ AC_DISABLE_SHARED AC_PROG_LIBTOOL -CXXFLAGS="$CXXFLAGS -Wall" +dnl I know this is not perfect. A better solution will come soon. +if test $CXX != icc -a $CXX != icpc; then + CXXFLAGS="$CXXFLAGS -Wall" +fi dnl Checks for libraries.