Skip to content
Snippets Groups Projects
Commit da61be50 authored by Oliver Sander's avatar Oliver Sander
Browse files

[bugfix] Fix various small errors in English text

parent 158b6343
No related branches found
No related tags found
No related merge requests found
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
/* does the compiler support __attribute__((unused))? */ /* does the compiler support __attribute__((unused))? */
#cmakedefine HAS_ATTRIBUTE_UNUSED 1 #cmakedefine HAS_ATTRIBUTE_UNUSED 1
/* Define to 1 if the <array> C++11 is available and support array::fill */ /* Define to 1 if the header <array> from C++11 is available and supports array::fill */
#cmakedefine HAVE_ARRAY 1 #cmakedefine HAVE_ARRAY 1
/* Define if you have a BLAS library. */ /* Define if you have a BLAS library. */
......
...@@ -18,7 +18,7 @@ AC_DEFUN([DUNE_TR1_HEADERS], [ ...@@ -18,7 +18,7 @@ AC_DEFUN([DUNE_TR1_HEADERS], [
dune_cv_array_cplusplus0x=no) dune_cv_array_cplusplus0x=no)
]) ])
AS_IF([test "x$dune_cv_array_cplusplus0x" != "xno"], AS_IF([test "x$dune_cv_array_cplusplus0x" != "xno"],
[AC_DEFINE([HAVE_ARRAY], 1, [Define to 1 if the <array> C++0x is available and support array::fill]) [AC_DEFINE([HAVE_ARRAY], 1, [Define to 1 if the header <array> from C++0x is available and supports array::fill])
]) ])
AC_CACHE_CHECK([whether integral_constant conforming to C++11 is supported], dune_cv_integral_constant_cplusplus11, [ AC_CACHE_CHECK([whether integral_constant conforming to C++11 is supported], dune_cv_integral_constant_cplusplus11, [
AC_COMPILE_IFELSE([ AC_COMPILE_IFELSE([
......
...@@ -69,9 +69,9 @@ AC_DEFUN([DUNE_PATH_PARMETIS],[ ...@@ -69,9 +69,9 @@ AC_DEFUN([DUNE_PATH_PARMETIS],[
ac_save_CPPFLAGS="$CPPFLAGS" ac_save_CPPFLAGS="$CPPFLAGS"
ac_save_LIBS="$LIBS" ac_save_LIBS="$LIBS"
# call IMDX_LIB_METIS directly and not via AC_REQUIRE # Call IMDX_LIB_METIS directly and not via AC_REQUIRE
# because AC_REQUIRE support not allow parameters # because AC_REQUIRE does not allow parameters.
# without any parameters a missing METIS would halt configure # Without any parameters a missing METIS would halt configure
IMMDX_LIB_METIS(,[true]) IMMDX_LIB_METIS(,[true])
## do nothing if --without-parmetis is used ## do nothing if --without-parmetis is used
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment