From b554cd7d86e04dcd40bbba3896837b4509a2f44d Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Wed, 27 Aug 2014 20:25:39 +0000 Subject: [PATCH] Turn off the coll/ml component if --without-hwloc was given cmr=v1.8.3:reviewer=jsquyres This commit was SVN r32621. --- ompi/mca/coll/ml/configure.m4 | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 ompi/mca/coll/ml/configure.m4 diff --git a/ompi/mca/coll/ml/configure.m4 b/ompi/mca/coll/ml/configure.m4 new file mode 100644 index 0000000000..79e7bfeab1 --- /dev/null +++ b/ompi/mca/coll/ml/configure.m4 @@ -0,0 +1,18 @@ +# -*- shell-script -*- +# +# Copyright (c) 2014 Intel, Inc. All rights reserved. +# $COPYRIGHT$ +# +# Additional copyrights may follow +# +# $HEADER$ +# +# MCA_coll_ml_CONFIG([action-if-found], [action-if-not-found]) +# ----------------------------------------------------------- +AC_DEFUN([MCA_ompi_coll_ml_CONFIG], [ + AC_CONFIG_FILES([ompi/mca/coll/ml/Makefile]) + + AS_IF([test "$OPAL_HAVE_HWLOC" = 1], + [$1], + [$2]) +])