
- move the mpi-io configury option into config/ompi_configure_options.m4 - add ompi/mca/common/ompio/configure.m4 so this component is not built when Open MPI is configure'd with --disable-mpi-io Fixes open-mpi/ompi#2009
22 строки
571 B
Bash
22 строки
571 B
Bash
# -*- shell-script -*-
|
|
#
|
|
# Copyright (c) 2016 Research Organization for Information Science
|
|
# and Technology (RIST). All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
# MCA_ompi_common_ompio_CONFIG([action-if-can-compile],
|
|
# [action-if-cant-compile])
|
|
# ------------------------------------------------
|
|
AC_DEFUN([MCA_ompi_common_ompio_CONFIG],[
|
|
AC_CONFIG_FILES([ompi/mca/common/ompio/Makefile])
|
|
|
|
AS_IF([test "$enable_mpi_io" != "no"],
|
|
[$1],
|
|
[$2])
|
|
])dnl
|