1
1
openmpi/ompi/mpiext/affinity/configure.m4
Jeff Squyres fca193d316 MPI extensions: build extensions by default
* affinity: will build unless disabled.
* cr: will build if FT is enabled, unless it is disabled.  It will
  also complain/abort if you --with-mpi-ext=cr, but FT is disabled.
* example: will only build if --with-mpi-ext=example (and .ompi_ignore
  is removed)
2015-06-25 11:28:58 -07:00

26 строки
763 B
Bash

# -*- shell-script -*-
#
# Copyright (c) 2004-2009 The Trustees of Indiana University.
# All rights reserved.
# Copyright (c) 2012-2015 Cisco Systems, Inc. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
# OMPI_MPIEXT_affinity_CONFIG([action-if-found], [action-if-not-found])
# -----------------------------------------------------------
AC_DEFUN([OMPI_MPIEXT_affinity_CONFIG], [
AC_CONFIG_FILES([ompi/mpiext/affinity/Makefile])
AC_CONFIG_FILES([ompi/mpiext/affinity/c/Makefile])
# This example can always build, so we just execute $1 if it was
# requested.
AS_IF([test "$ENABLE_affinity" = "1" || \
test "$ENABLE_EXT_ALL" = "1"],
[$1],
[$2])
])