2010-05-05 00:48:43 +00:00
|
|
|
# -*- shell-script -*-
|
|
|
|
#
|
|
|
|
# Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
|
2011-11-22 21:24:35 +00:00
|
|
|
# Copyright (c) 2011 Los Alamos National Security, LLC.
|
|
|
|
# All rights reserved.
|
2010-05-05 00:48:43 +00:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
# MCA_sensor_heartbeat_CONFIG([action-if-found], [action-if-not-found])
|
|
|
|
# -----------------------------------------------------------
|
2010-09-17 23:04:06 +00:00
|
|
|
AC_DEFUN([MCA_orte_sensor_heartbeat_CONFIG], [
|
|
|
|
AC_CONFIG_FILES([orte/mca/sensor/heartbeat/Makefile])
|
|
|
|
|
2010-05-05 00:48:43 +00:00
|
|
|
# if we don't want heartbeats, don't compile
|
|
|
|
# this component
|
2011-11-22 21:24:35 +00:00
|
|
|
AS_IF([test "$orte_want_heartbeats" = "1" -a "$orte_without_full_support" = 0],
|
2010-05-05 00:48:43 +00:00
|
|
|
[$1], [$2])
|
|
|
|
])dnl
|
|
|
|
|