![Ralph Castain](/assets/img/avatar_default.png)
This merges the branch containing the revamped build system based around converting autogen from a bash script to a Perl program. Jeff has provided emails explaining the features contained in the change. Please note that configure requirements on components HAVE CHANGED. For example. a configure.params file is no longer required in each component directory. See Jeff's emails for an explanation. This commit was SVN r23764.
27 строки
804 B
Bash
27 строки
804 B
Bash
# -*- shell-script -*-
|
|
#
|
|
# Copyright (c) 2004-2008 The Trustees of the University of Tennessee.
|
|
# All rights reserved.
|
|
# Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
# MCA_pml_dr_CONFIG([action-if-found], [action-if-not-found])
|
|
# -----------------------------------------------------------
|
|
AC_DEFUN([MCA_ompi_pml_dr_CONFIG],[
|
|
AC_CONFIG_FILES([ompi/mca/pml/dr/Makefile])
|
|
|
|
# Dont compile DR if threading is enabled but there is no
|
|
# support for 64 bits atomics.
|
|
AS_IF([test $OPAL_ASM_SUPPORT_64BIT -eq 1],
|
|
[$1],
|
|
[AS_IF([test $OPAL_ENABLE_PROGRESS_THREADS -eq 1 -o $OMPI_ENABLE_THREAD_MULTIPLE -eq 1],
|
|
[$2],
|
|
[$1])
|
|
])
|
|
])dnl
|