1
1
openmpi/orte/mca/state/db/configure.m4
Ralph Castain e291fc2c69 With Jeff's help, get the libraries to link as required.
Update ompi_info and orte-info to include the new framework.

Fix some selection logic and a typo'd variable name

Still remains ompi_ignored until we complete testing

This commit was SVN r22848.
2010-03-18 02:12:59 +00:00

29 строки
773 B
Bash

dnl -*- shell-script -*-
dnl
dnl Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
dnl $COPYRIGHT$
dnl
dnl Additional copyrights may follow
dnl
dnl $HEADER$
dnl
# MCA_state_db_CONFIG([action-if-found], [action-if-not-found])
# -----------------------------------------------------------
AC_DEFUN([MCA_state_db_CONFIG], [
# only build if db.h and its corresponding library are found
OMPI_CHECK_PACKAGE([state_db],
[db.h],
[db],
[dbopen],
[],
[],
[],
[$1],
[$2])])
AC_SUBST(state_db_CPPFLAGS)
AC_SUBST(state_db_LDFLAGS)
AC_SUBST(state_db_LIBS)
])dnl