Skip to content

Commit 7dcfdfe

Browse files
committed
Enable the continuations extension only if explicitly requested
Signed-off-by: Joseph Schuchart <[email protected]>
1 parent ef694fb commit 7dcfdfe

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

ompi/mpiext/continue/configure.m4

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,13 @@ AC_DEFUN([OMPI_MPIEXT_continue_CONFIG],[
1717
AC_CONFIG_FILES([ompi/mpiext/continue/c/Makefile])
1818
AC_CONFIG_FILES([ompi/mpiext/continue/c/profile/Makefile])
1919

20-
# This example can always build, so we just execute $1 if it was
21-
# requested.
22-
AS_IF([test "$ENABLE_continue" = "1" || \
23-
test "$ENABLE_EXT_ALL" = "1"],
20+
# This module is not stable yet so it should only be built
21+
# if explicitly requested
22+
AS_IF([test "$ENABLE_continue" = "1"],
2423
[$1],
2524
[$2])
2625

27-
AS_IF([test "$ENABLE_continue" = "1" || \
28-
test "$ENABLE_EXT_ALL" = "1"],
26+
AS_IF([test "$ENABLE_continue" = "1"],
2927
[AC_DEFINE_UNQUOTED([OMPI_HAVE_MPI_EXT_CONTINUE], [1],
3028
[Whether MPI Continuations are enabled])],
3129
[])

0 commit comments

Comments
 (0)