18 строки
482 B
Plaintext
18 строки
482 B
Plaintext
|
# -*- shell-script -*-
|
||
|
#
|
||
|
# Copyright (c) 2004-2006 The University of Tennessee and The University
|
||
|
# of Tennessee Research Foundation. All rights
|
||
|
# reserved.
|
||
|
# $COPYRIGHT$
|
||
|
#
|
||
|
# Additional copyrights may follow
|
||
|
#
|
||
|
# $HEADER$
|
||
|
#
|
||
|
|
||
|
# MCA_pls_submit_CONFIG([action-if-found], [action-if-not-found])
|
||
|
# -----------------------------------------------------------
|
||
|
AC_DEFUN([MCA_pls_submit_CONFIG],[
|
||
|
AC_CHECK_FUNC([fork], [$1], [$2])
|
||
|
])dnl
|