1
1
openmpi/opal/mca/dstore/pmi/configure.m4
Ralph Castain c4c9bc1573 As per the RFC:
http://www.open-mpi.org/community/lists/devel/2014/04/14496.php

Revamp the opal database framework, including renaming it to "dstore" to reflect that it isn't a "database". Move the "db" framework to ORTE for now, soon to move to ORCM

This commit was SVN r31557.
2014-04-29 21:49:23 +00:00

29 строки
769 B
Bash

# -*- shell-script -*-
#
# Copyright (c) 2012-2013 Los Alamos National Security, LLC.
# All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
# MCA_dstore_pmi_CONFIG([action-if-found], [action-if-not-found])
# -----------------------------------------------------------
AC_DEFUN([MCA_opal_dstore_pmi_CONFIG], [
AC_CONFIG_FILES([opal/mca/dstore/pmi/Makefile])
OPAL_CHECK_PMI([dstore_pmi], [dstore_pmi_good=1], [dstore_pmi_good=0])
# Evaluate succeed / fail
AS_IF([test "$dstore_pmi_good" = 1],
[$1],
[$2])
# set build flags to use in makefile
AC_SUBST([dstore_pmi_CPPFLAGS])
AC_SUBST([dstore_pmi_LDFLAGS])
AC_SUBST([dstore_pmi_LIBS])
])