#! /bin/sh
-# From configure.in Revision: 1.40
+# From configure.in Revision: 1.41
if test $enableshared = yes ; then
- echo "$ac_t""Configuring for shared libraries" 1>&6
+ echo "$ac_t""configuring for shared libraries" 1>&6
CFLAGS="$CFLAGS -fPIC"
CXXFLAGS="$CXXFLAGS -fPIC"
LDFLAGS="$LDFLAGS -fPIC"
lib_suffix=.so;
else
- echo "$ac_t""Configuring for static libraries" 1>&6
+ echo "$ac_t""configuring for static libraries" 1>&6
CFLAGS="$CFLAGS "
CXXFLAGS="$CXXFLAGS "
LDFLAGS="$LDFLAGS "
GXX_VERSION_STRING=`($CXX -v 2>&1) | grep "gcc version"`
case "$GXX_VERSION_STRING" in
*"egcs-1.1"*)
- echo "$ac_t""Compiler is egcs-1.1" 1>&6
+ echo "$ac_t""compiler is egcs-1.1" 1>&6
GXX_VERSION=egcs1.1
;;
*2.95*)
- echo "$ac_t""Compiler is gcc-2.95" 1>&6
+ echo "$ac_t""compiler is gcc-2.95" 1>&6
GXX_VERSION=gcc2.95
;;
*2.96*)
- echo "$ac_t""Compiler is gcc-2.96" 1>&6
+ echo "$ac_t""compiler is gcc-2.96" 1>&6
GXX_VERSION=gcc2.96
;;
*2.97*)
- echo "$ac_t""Compiler is gcc-2.97" 1>&6
+ echo "$ac_t""compiler is gcc-2.97" 1>&6
GXX_VERSION=gcc2.97
;;
*2.4* | *2.5* | *2.6* | *2.7* | *2.8*)
- echo "$ac_t""Compiler is $GXX_VERSION_STRING" 1>&6
- { echo "configure: error: Compiler is not supported" 1>&2; exit 1; }
+ echo "$ac_t""compiler is $GXX_VERSION_STRING" 1>&6
+ { echo "configure: error: compiler is not supported" 1>&2; exit 1; }
;;
*)
- echo "$ac_t""Compiler is unknown but accepted gcc version" 1>&6
+ echo "$ac_t""compiler is unknown but accepted gcc version" 1>&6
GXX_VERSION=other
;;
esac
fi
if test $enablemultigrid = yes ; then
- echo "$ac_t""Configuring multigrid" 1>&6
+ echo "$ac_t""configuring multigrid" 1>&6
cat >> confdefs.h <<\EOF
#define ENABLE_MULTIGRID 1
EOF
dnl Set compile flags accordingly
if test $enableshared = yes ; then
- AC_MSG_RESULT(Configuring for shared libraries)
+ AC_MSG_RESULT(configuring for shared libraries)
CFLAGS="$CFLAGS -fPIC"
CXXFLAGS="$CXXFLAGS -fPIC"
LDFLAGS="$LDFLAGS -fPIC"
lib_suffix=.so;
else
- AC_MSG_RESULT(Configuring for static libraries)
+ AC_MSG_RESULT(configuring for static libraries)
dnl Define these variables so they are not filled with default values later
CFLAGS="$CFLAGS "
CXXFLAGS="$CXXFLAGS "
GXX_VERSION_STRING=`($CXX -v 2>&1) | grep "gcc version"`
case "$GXX_VERSION_STRING" in
*"egcs-1.1"*)
- AC_MSG_RESULT(Compiler is egcs-1.1)
+ AC_MSG_RESULT(compiler is egcs-1.1)
GXX_VERSION=egcs1.1
;;
*2.95*)
- AC_MSG_RESULT(Compiler is gcc-2.95)
+ AC_MSG_RESULT(compiler is gcc-2.95)
GXX_VERSION=gcc2.95
;;
*2.96*)
- AC_MSG_RESULT(Compiler is gcc-2.96)
+ AC_MSG_RESULT(compiler is gcc-2.96)
GXX_VERSION=gcc2.96
;;
*2.97*)
- AC_MSG_RESULT(Compiler is gcc-2.97)
+ AC_MSG_RESULT(compiler is gcc-2.97)
GXX_VERSION=gcc2.97
;;
*2.4* | *2.5* | *2.6* | *2.7* | *2.8*)
dnl These compilers are too old to support a useful subset
dnl of modern C++, so we don't support them
- AC_MSG_RESULT(Compiler is $GXX_VERSION_STRING)
- AC_MSG_ERROR(Compiler is not supported)
+ AC_MSG_RESULT(compiler is $GXX_VERSION_STRING)
+ AC_MSG_ERROR(compiler is not supported)
;;
*)
- AC_MSG_RESULT(Compiler is unknown but accepted gcc version)
+ AC_MSG_RESULT(compiler is unknown but accepted gcc version)
GXX_VERSION=other
;;
esac
enablemultigrid=no ;
fi)
if test $enablemultigrid = yes ; then
- AC_MSG_RESULT(Configuring multigrid)
+ AC_MSG_RESULT(configuring multigrid)
AC_DEFINE(ENABLE_MULTIGRID)
fi
AC_SUBST(enablemultigrid)