dnl -*- Mode: Shell-script ; indent-tabs-mode:nil -*-
dnl
dnl Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
dnl                         University Research and Technology
dnl                         Corporation.  All rights reserved.
dnl Copyright (c) 2004-2005 The University of Tennessee and The University
dnl                         of Tennessee Research Foundation.  All rights
dnl                         reserved.
dnl Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
dnl                         University of Stuttgart.  All rights reserved.
dnl Copyright (c) 2004-2006 The Regents of the University of California.
dnl                         All rights reserved.
dnl Copyright (c) 2006      QLogic Corp. All rights reserved.
dnl Copyright (c) 2009-2016 Cisco Systems, Inc.  All rights reserved.
dnl Copyright (c) 2011-2016 Los Alamos National Security, LLC. All rights
dnl                         reserved.
dnl Copyright (c) 2014      Intel, Inc. All rights reserved
dnl Copyright (c) 2015      Research Organization for Information Science
dnl                         and Technology (RIST). All rights reserved.
dnl $COPYRIGHT$
dnl
dnl Additional copyrights may follow
dnl
dnl $HEADER$
dnl

# OPAL_CHECK_UGNI(prefix, [action-if-found], [action-if-not-found])
# --------------------------------------------------------
# check if GNI support can be found.  sets prefix_{CPPFLAGS,
# LDFLAGS, LIBS} as needed and runs action-if-found if there is
# support, otherwise executes action-if-not-found
#

AC_DEFUN([OPAL_CHECK_UGNI], [
    if test -z "$opal_check_ugni_happy" ; then
        AC_ARG_WITH([ugni], [AC_HELP_STRING([--with-ugni],
            [Build support for Cray GNI. Set PKG_CONFIG_PATH env. variable to specify alternate path.])])

        opal_check_ugni_happy="no"

        AS_IF([test "$with_ugni" = "no"],
              [opal_check_ugni_happy="no"],
              [PKG_CHECK_MODULES([CRAY_UGNI], [cray-ugni],
			  [opal_check_ugni_happy="yes"],
                          [opal_check_ugni_happy="no"])])

        opal_check_ugni_$1_save_CPPFLAGS="$CPPFLAGS"
        opal_check_ugni_$1_save_LIBS="$LIBS"

        if test "$opal_check_ugni_happy" = "yes" ; then
            CPPFLAGS="$CPPFLAGS $CRAY_UGNI_CFLAGS"
            LIBS="$LIBS $CRAY_UGNI_LIBS"
#    echo "+++++++++++++++++++++++CPPFLAGS",$CPPFLAGS
#    echo "+++++++++++++++++++++++LDFLAGSS",$LDFLAGS
#    echo "+++++++++++++++++++++++1_CPPFLAGS",$$1_CPPFLAGS
#    echo "+++++++++++++++++++++++1_LDFLAGSS",$$1_LDFLAGS

#   sanity checks

            AC_CHECK_HEADER([gni_pub.h],[],AC_MSG_ERROR(['gni_pub.h not found.']))
            AC_CHECK_FUNCS([GNI_GetJobResInfo])

            CPPFLAGS="$opal_check_ugni_$1_save_CPPFLAGS"
            LIBS="$opal_check_ugni_$1_save_LIBS"
        fi

        AS_IF([test "$opal_check_ugni_happy" = "yes" && test "$enable_progress_threads" = "yes"],
              [AC_MSG_WARN([GNI driver does not currently support progress threads.  Disabling.])
               opal_check_ugni_happy="no"])

	OPAL_SUMMARY_ADD([[Transports]],[[Cray uGNI (Gemini/Aries)]],[$1],[$opal_check_ugni_happy])
    fi

    AS_IF([test "$opal_check_ugni_happy" = "yes"],
          [$1_CPPFLAGS="[$]$1_CPPFLAGS $CRAY_UGNI_CFLAGS"
	   $1_LIBS="[$]$1_LIBS $CRAY_UGNI_LIBS"
	   $2],
          [AS_IF([test ! -z "$with_ugni" && test "$with_ugni" != "no"],
                 [AC_MSG_ERROR([GNI support requested but not found.  Cannot continue.])])
           $3])

])