1
1

The last of the Alpha fixes. The Alpha sh shell's builtin test doesn't

like == that much...

Refs trac:380

This commit was SVN r11860.

The following Trac tickets were found above:
  Ticket 380 --> https://svn.open-mpi.org/trac/ompi/ticket/380
Этот коммит содержится в:
Brian Barrett 2006-09-28 03:45:27 +00:00
родитель 4d7f221f86
Коммит bc9c6d65c6
3 изменённых файлов: 3 добавлений и 2 удалений

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

@ -33,6 +33,7 @@ version 1.0.
1.2 1.2
--- ---
- A number of fixes for Alpha platforms.
- A variety of Fortran API fixes. - A variety of Fortran API fixes.
- Build the Fortran MPI API as a separate library to allow these - Build the Fortran MPI API as a separate library to allow these
functions to be profiled properly. functions to be profiled properly.

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

@ -365,7 +365,7 @@ AC_MSG_CHECKING([if peruse support is required])
AC_ARG_ENABLE(peruse, AC_ARG_ENABLE(peruse,
AC_HELP_STRING([--enable-peruse], AC_HELP_STRING([--enable-peruse],
[Support PERUSE interface (default: disabled)])) [Support PERUSE interface (default: disabled)]))
if test "$enable_peruse" == "yes"; then if test "$enable_peruse" = "yes"; then
AC_MSG_RESULT([yes]) AC_MSG_RESULT([yes])
WANT_PERUSE=1 WANT_PERUSE=1
else else

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

@ -41,7 +41,7 @@ AC_DEFUN([OMPI_FIND_TYPE],[
[AS_VAR_SET(type_var, "not found")], [AS_VAR_SET(type_var, "not found")],
[AS_VAR_SET(type_var, "$oft_real_type")])]) [AS_VAR_SET(type_var, "$oft_real_type")])])
AS_IF([test "AS_VAR_GET(type_var)" == "not found"], AS_IF([test "AS_VAR_GET(type_var)" = "not found"],
[AC_MSG_WARN([*** Did not find corresponding C type]) [AC_MSG_WARN([*** Did not find corresponding C type])
AS_IF([test "$oft_abort_on_fail" != "no"], AS_IF([test "$oft_abort_on_fail" != "no"],
[AC_MSG_ERROR([Cannot continue])])]) [AC_MSG_ERROR([Cannot continue])])])