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