From bc060bcd7d7a334c6763b3e53bc1d8d2299805b7 Mon Sep 17 00:00:00 2001 From: Roi Dayan Date: Thu, 14 Apr 2016 16:15:20 +0300 Subject: [PATCH] confiugre.ac: remove rdma and ibverbs dependency from xio XioMessenger works with Accelio api and not rdma and ibverbs api directly. configure.ac already has a check for libxio. Signed-off-by: Roi Dayan --- configure.ac | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 0d6427f68fb3..10fca7a69a6c 100644 --- a/configure.ac +++ b/configure.ac @@ -724,8 +724,6 @@ AM_CONDITIONAL(ENABLE_XIO, [test "x$enable_xio" = "xyes"]) if test "x$enable_xio" = x"yes"; then AC_CHECK_HEADER([libxio.h], [], AC_MSG_ERROR([Cannot find header 'libxio.h'.])) AC_CHECK_LIB([xio], [xio_init], [], AC_MSG_FAILURE([Accelio libxio not found])) - AC_CHECK_LIB([ibverbs], [ibv_query_device], [], AC_MSG_FAILURE([libibverbs not found])) - AC_CHECK_LIB([rdmacm], [rdma_connect], [], AC_MSG_FAILURE([librdmacm not found])) # Also require boost-regex, used in address_helper AC_CHECK_LIB(boost_regex, main, [], @@ -733,7 +731,7 @@ if test "x$enable_xio" = x"yes"; then AC_DEFINE([HAVE_XIO], [1], [Accelio conditional compilation]) - XIO_LIBS="-lxio -libverbs -lrdmacm" + XIO_LIBS="-lxio" AC_SUBST(XIO_LIBS) fi -- 2.47.3