2005-07-14 17:28:06 +04:00
|
|
|
# -*- shell-script -*-
|
|
|
|
#
|
2005-11-05 22:57:48 +03:00
|
|
|
# Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
# University Research and Technology
|
|
|
|
# Corporation. All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
# of Tennessee Research Foundation. All rights
|
|
|
|
# reserved.
|
2005-07-14 17:28:06 +04:00
|
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
# University of Stuttgart. All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
# All rights reserved.
|
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2006-09-15 01:29:51 +04:00
|
|
|
# MCA_odls_default_CONFIG([action-if-found], [action-if-not-found])
|
2005-07-14 17:28:06 +04:00
|
|
|
# -----------------------------------------------------------
|
2006-09-15 01:29:51 +04:00
|
|
|
AC_DEFUN([MCA_odls_default_CONFIG],[
|
2005-07-14 17:28:06 +04:00
|
|
|
AC_CHECK_FUNC([fork], [$1], [$2])
|
|
|
|
])dnl
|
2006-09-15 01:29:51 +04:00
|
|
|
|