2014-06-01 16:14:10 +00:00
|
|
|
dnl -*- shell-script -*-
|
|
|
|
dnl
|
|
|
|
dnl Copyright (c) 2014 Intel, Inc. All rights reserved.
|
|
|
|
dnl $COPYRIGHT$
|
2015-06-23 20:59:57 -07:00
|
|
|
dnl
|
2014-06-01 16:14:10 +00:00
|
|
|
dnl Additional copyrights may follow
|
2015-06-23 20:59:57 -07:00
|
|
|
dnl
|
2014-06-01 16:14:10 +00:00
|
|
|
dnl $HEADER$
|
|
|
|
dnl
|
|
|
|
|
|
|
|
# MCA_rtc_freq_CONFIG([action-if-found], [action-if-not-found])
|
|
|
|
# -----------------------------------------------------------
|
|
|
|
AC_DEFUN([MCA_orte_rtc_freq_CONFIG], [
|
|
|
|
AC_CONFIG_FILES([orte/mca/rtc/freq/Makefile])
|
|
|
|
|
|
|
|
# do not build if not on linux
|
|
|
|
AC_MSG_CHECKING([for freq control support])
|
|
|
|
AS_IF([test "$opal_found_linux" = "yes"],
|
|
|
|
[AC_MSG_RESULT([yes])
|
|
|
|
$1],
|
|
|
|
[AC_MSG_RESULT([only supported on Linux systems])
|
|
|
|
$2])
|
|
|
|
])dnl
|