1# -*- shell-script -*-
2#
3# Copyright (c) 2004-2010 The Trustees of Indiana University.
4#                         All rights reserved.
5# Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
6#                         All rights reserved.
7# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
8#                         University of Stuttgart.  All rights reserved.
9# Copyright (c) 2004-2005 The Regents of the University of California.
10#                         All rights reserved.
11# Copyright (c) 2010      Cisco Systems, Inc.  All rights reserved.
12# $COPYRIGHT$
13#
14# Additional copyrights may follow
15#
16# $HEADER$
17#
18
19# MCA_crcp_bkmrk_CONFIG([action-if-found], [action-if-not-found])
20# -----------------------------------------------------------
21AC_DEFUN([MCA_ompi_crcp_bkmrk_CONFIG],[
22    AC_CONFIG_FILES([ompi/mca/crcp/bkmrk/Makefile])
23
24    # If we don't want FT, don't compile this component
25    AS_IF([test "$opal_want_ft_cr" = "1"],
26        [$1],
27        [$2])
28])dnl
29