1
1

- This fix replaces r18899, which actually was not correct.

- Revert the $2, which was correct.
- It fixes the problem, that memchecker valgrind component could be 
compiled and is required, but it is unable to be selected. 

This commit was SVN r18906.

The following SVN revision numbers were found above:
  r18899 --> open-mpi/ompi@0b1b96b598
Этот коммит содержится в:
Shiqing Fan 2008-07-14 13:06:09 +00:00
родитель cb36782310
Коммит 54e93ff9d3

Просмотреть файл

@ -27,7 +27,6 @@ AC_DEFUN([MCA_memchecker_valgrind_CONFIG],[
ompi_check_memchecker_valgrind_save_CPPFLAGS="$CPPFLAGS"
ompi_check_memchecker_valgrind_happy=no
AS_IF([test "$with_valgrind" != "no"],
[AS_IF([test ! -z "$with_valgrind" -a "$with_valgrind" != "yes"],
[CPPFLAGS="$CPPFLAGS -I$with_valgrind/include"
@ -48,8 +47,8 @@ AC_DEFUN([MCA_memchecker_valgrind_CONFIG],[
],
[AC_MSG_WARN([valgrind.h not found])
AC_MSG_WARN([Cannot compile this component])])])
$CPPFLAGS="$ompi_check_memchecker_valgrind_save_CPPFLAGS"
AS_IF([test "$ompi_check_valgrind_happy" = "yes"],
[$1])
AS_IF([test "$ompi_check_memchecker_valgrind_happy" = "yes"],
[$1],[$2])
])dnl