From: Roi Dayan Date: Thu, 14 Apr 2016 13:15:20 +0000 (+0300) Subject: confiugre.ac: remove rdma and ibverbs dependency from xio X-Git-Tag: v11.0.0~730^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=bc060bcd7d7a334c6763b3e53bc1d8d2299805b7;p=ceph.git 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 --- 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