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
|
# -*- shell-script -*-
#
# Copyright (c) 2015 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2015-2016 Research Organization for Information Science
# and Technology (RIST). All rights reserved.
# Copyright (c) 2017 Amazon.com, Inc. or its affiliates.
# All Rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
# MCA_opal_reachable_netlink_CONFIG([action-if-can-compile],
# [action-if-cant-compile])
# ------------------------------------------------
AC_DEFUN([MCA_opal_reachable_netlink_CONFIG],[
AC_CONFIG_FILES([opal/mca/reachable/netlink/Makefile])
OPAL_VAR_SCOPE_PUSH([opal_reachable_netlink_happy])
opal_reachable_netlink_happy=1
AC_CHECK_HEADER([linux/netlink.h], [],
[opal_reachable_netlink_happy=0], [
#include <sys/types.h>
#include <net/if.h>
])
# this is terrible, but libnl-1 and libnl-3 are incompatible in
# weird ways, and once there are libraries in LIBS for one, the
# other is hard to get right. So if someone has already decided
# we have libnl version 1, get out. Otherwise, see if we have
# libnl-3, which is the only version supported by the netlink
# component.
AS_IF([test $opal_libnl_version -eq 1],
[opal_reachable_netlink_happy=0],
[OPAL_CHECK_LIBNL_V3([$opal_libnl_location],
[opal_reachable_netlink])
AS_IF([test "$OPAL_HAVE_LIBNL3" != "1"],
[opal_reachable_netlink_happy=0])])
AS_IF([test $opal_reachable_netlink_happy -eq 1],
[$1],
[$2])
AC_SUBST([opal_reachable_netlink_CPPFLAGS])
AC_SUBST([opal_reachable_netlink_LDFLAGS])
AC_SUBST([opal_reachable_netlink_LIBS])
OPAL_VAR_SCOPE_POP()
])
|