2005-08-21 18:56:40 +00:00
|
|
|
dnl -*- shell-script -*-
|
|
|
|
dnl
|
2005-11-05 19:57:48 +00:00
|
|
|
dnl Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
dnl University Research and Technology
|
|
|
|
dnl Corporation. All rights reserved.
|
|
|
|
dnl Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
dnl of Tennessee Research Foundation. All rights
|
|
|
|
dnl reserved.
|
2005-08-21 18:56:40 +00:00
|
|
|
dnl Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
dnl University of Stuttgart. All rights reserved.
|
|
|
|
dnl Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
dnl All rights reserved.
|
2010-10-14 22:39:48 +00:00
|
|
|
dnl Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
|
2005-08-21 18:56:40 +00:00
|
|
|
dnl $COPYRIGHT$
|
|
|
|
dnl
|
|
|
|
dnl Additional copyrights may follow
|
|
|
|
dnl
|
|
|
|
dnl $HEADER$
|
|
|
|
dnl
|
|
|
|
|
|
|
|
dnl we only want one :)
|
2010-09-17 23:04:06 +00:00
|
|
|
m4_define(MCA_opal_timer_CONFIGURE_MODE, STOP_AT_FIRST)
|
2005-08-18 05:34:22 +00:00
|
|
|
|
2010-09-17 23:04:06 +00:00
|
|
|
AC_DEFUN([MCA_opal_timer_CONFIG],[
|
2005-08-18 05:34:22 +00:00
|
|
|
timer_base_include=
|
|
|
|
|
2010-10-14 22:39:48 +00:00
|
|
|
# All components look at this value
|
|
|
|
AC_ARG_WITH([timer],
|
|
|
|
[AC_HELP_STRING([--with-timer=TYPE],
|
|
|
|
[Build high resolution timer component TYPE])])
|
|
|
|
|
2005-08-18 05:34:22 +00:00
|
|
|
# first, compile all the components
|
2007-08-18 21:35:51 +00:00
|
|
|
MCA_CONFIGURE_FRAMEWORK($1, $2, 1)
|
2005-08-18 05:34:22 +00:00
|
|
|
|
|
|
|
# someone should have set this...
|
2005-08-22 03:47:48 +00:00
|
|
|
if test "$timer_base_include" = "" ; then
|
2005-09-16 02:25:41 +00:00
|
|
|
timer_base_include="base/timer_base_null.h"
|
2005-08-18 05:34:22 +00:00
|
|
|
fi
|
|
|
|
|
2006-07-16 04:23:52 +00:00
|
|
|
AC_DEFINE_UNQUOTED([MCA_timer_IMPLEMENTATION_HEADER],
|
|
|
|
["opal/mca/timer/$timer_base_include"],
|
|
|
|
[Header to include for timer implementation])
|
2005-08-18 05:34:22 +00:00
|
|
|
])
|