1
1
openmpi/orte/mca/state/dbm/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 строки
772 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_dbm_CONFIG([action-if-found], [action-if-not-found])
# -----------------------------------------------------------
AC_DEFUN([MCA_state_dbm_CONFIG], [
# only build if ndbm.h and its library are found
OMPI_CHECK_PACKAGE([state_dbm],
[ndbm.h],
[dbm],
[dbm_open],
[],
[],
[],
[$1],
[$2])])
AC_SUBST(state_dbm_CPPFLAGS)
AC_SUBST(state_dbm_LDFLAGS)
AC_SUBST(state_dbm_LIBS)
])dnl