1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
dnl -*- autoconf -*-
dnl
dnl Copyright (c) 2016 Los Alamos National Security, LLC. All rights
dnl reserved.
dnl Copyright (c) 2016-2023 Cisco Systems, Inc. All rights reserved.
dnl Copyright (c) 2016 Research Organization for Information Science
dnl and Technology (RIST). All rights reserved.
dnl Copyright (c) 2018-2020 Intel, Inc. All rights reserved.
dnl Copyright (c) 2021-2024 Nanook Consulting All rights reserved.
dnl Copyright (c) 2022 Amazon.com, Inc. or its affiliates.
dnl All Rights reserved.
dnl $COPYRIGHT$
dnl
dnl Additional copyrights may follow
dnl
dnl $HEADER$
dnl
dnl PRTE_SUMMARY_ADD(section, topic, unused, result)
dnl
dnl Turn around and call OAC_SUMMARY_ADD
dnl -----------------------------------------------------------
AC_DEFUN([PRTE_SUMMARY_ADD],[
OAC_SUMMARY_ADD([$1], [$2], [$4])
])
dnl PRTE_SUMMARY_PRINT
dnl
dnl Print a bunch of PRRTE summary configuration information and
dnl then turn around and call OAC_SUMMARY_PRINT.
dnl -----------------------------------------------------------
AC_DEFUN([PRTE_SUMMARY_PRINT],[
cat <<EOF >&2
PRTE configuration:
-----------------------
Version: $PRTE_MAJOR_VERSION.$PRTE_MINOR_VERSION.$PRTE_RELEASE_VERSION$PRTE_GREEK_VERSION
EOF
if test $WANT_DEBUG = 0 ; then
echo "Debug build: no" >&2
else
echo "Debug build: yes" >&2
fi
if test $WANT_PICKY_COMPILER = 0 ; then
echo "Devel check enabled: no" >& 2
else
echo "Devel check enabled: yes" >& 2
fi
if test ! -z $with_prte_platform ; then
echo "Platform file: $with_prte_platform" >&2
else
echo "Platform file: (none)" >&2
fi
echo >&2
OAC_SUMMARY_PRINT([stderr])
if test $WANT_DEBUG = 1 ; then
cat <<EOF >&2
*****************************************************************************
THIS IS A DEBUG BUILD! DO NOT USE THIS BUILD FOR PERFORMANCE MEASUREMENTS!
*****************************************************************************
EOF
fi
])
|