24a28494a6
This will not cause everyone to run autogen because this component is .ompi_ignore'd for everyone except jsquyres and rhc. This commit was SVN r15401.
38 строки
1.3 KiB
Bash
38 строки
1.3 KiB
Bash
# -*- shell-script -*-
|
|
#
|
|
# Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
# University Research and Technology
|
|
# Corporation. All rights reserved.
|
|
# Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
# of Tennessee Research Foundation. 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_ras_lsf_CONFIG([action-if-found], [action-if-not-found])
|
|
# -----------------------------------------------------------
|
|
AC_DEFUN([MCA_ras_lsf_CONFIG],[
|
|
OMPI_CHECK_LSF([ras_lsf], [ras_lsf_good=1], [ras_lsf_good=0])
|
|
|
|
# if check worked, set wrapper flags if so.
|
|
# Evaluate succeed / fail
|
|
AS_IF([test "$ras_lsf_good" = "1"],
|
|
[ras_lsf_WRAPPER_EXTRA_LDFLAGS="$ras_lsf_LDFLAGS"
|
|
ras_lsf_WRAPPER_EXTRA_LIBS="$ras_lsf_LIBS"
|
|
$1],
|
|
[$2])
|
|
|
|
# set build flags to use in makefile
|
|
AC_SUBST([ras_lsf_CPPFLAGS])
|
|
AC_SUBST([ras_lsf_LDFLAGS])
|
|
AC_SUBST([ras_lsf_LIBS])
|
|
])dnl
|