26 строки
873 B
Plaintext
26 строки
873 B
Plaintext
|
# -*- shell-script -*-
|
||
|
#
|
||
|
# Copyright (c) 2004-2007 The Trustees of Indiana University.
|
||
|
# All rights reserved.
|
||
|
# Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
||
|
# All rights reserved.
|
||
|
# 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$
|
||
|
#
|
||
|
|
||
|
# MCA_crs_self_CONFIG([action-if-found], [action-if-not-found])
|
||
|
# -----------------------------------------------------------
|
||
|
AC_DEFUN([MCA_crs_self_CONFIG],[
|
||
|
# If we don't want FT, don't compile this component
|
||
|
AS_IF([test "$ompi_want_ft" = "1"],
|
||
|
[$1],
|
||
|
[$2])
|
||
|
])dnl
|