2007-03-17 02:11:45 +03:00
|
|
|
# -*- shell-script -*-
|
|
|
|
#
|
2010-03-13 02:57:50 +03:00
|
|
|
# Copyright (c) 2004-2010 The Trustees of Indiana University.
|
2007-03-17 02:11:45 +03:00
|
|
|
# All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
|
|
# All rights reserved.
|
2015-06-24 06:59:57 +03:00
|
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
2007-03-17 02:11:45 +03:00
|
|
|
# University of Stuttgart. All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
# All rights reserved.
|
2010-09-18 03:04:06 +04:00
|
|
|
# Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
|
2007-03-17 02:11:45 +03:00
|
|
|
# $COPYRIGHT$
|
2015-06-24 06:59:57 +03:00
|
|
|
#
|
2007-03-17 02:11:45 +03:00
|
|
|
# Additional copyrights may follow
|
2015-06-24 06:59:57 +03:00
|
|
|
#
|
2007-03-17 02:11:45 +03:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2008-09-10 22:29:17 +04:00
|
|
|
# MCA_crcp_bkmrk_CONFIG([action-if-found], [action-if-not-found])
|
2007-03-17 02:11:45 +03:00
|
|
|
# -----------------------------------------------------------
|
2010-09-18 03:04:06 +04:00
|
|
|
AC_DEFUN([MCA_ompi_crcp_bkmrk_CONFIG],[
|
|
|
|
AC_CONFIG_FILES([ompi/mca/crcp/bkmrk/Makefile])
|
|
|
|
|
2007-03-17 02:11:45 +03:00
|
|
|
# If we don't want FT, don't compile this component
|
2010-03-26 01:53:48 +03:00
|
|
|
AS_IF([test "$opal_want_ft_cr" = "1"],
|
2007-03-17 02:11:45 +03:00
|
|
|
[$1],
|
|
|
|
[$2])
|
|
|
|
])dnl
|