2007-03-16 23:11:45 +00:00
|
|
|
# -*- 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$
|
|
|
|
#
|
|
|
|
|
2008-09-10 18:29:17 +00:00
|
|
|
# MCA_crcp_bkmrk_CONFIG([action-if-found], [action-if-not-found])
|
2007-03-16 23:11:45 +00:00
|
|
|
# -----------------------------------------------------------
|
2008-09-10 18:29:17 +00:00
|
|
|
AC_DEFUN([MCA_crcp_bkmrk_CONFIG],[
|
2007-03-16 23:11:45 +00:00
|
|
|
# If we don't want FT, don't compile this component
|
|
|
|
AS_IF([test "$ompi_want_ft" = "1"],
|
|
|
|
[$1],
|
|
|
|
[$2])
|
|
|
|
])dnl
|