]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
confiugre.ac: remove rdma and ibverbs dependency from xio 8637/head
authorRoi Dayan <roid@mellanox.com>
Thu, 14 Apr 2016 13:15:20 +0000 (16:15 +0300)
committerRoi Dayan <roid@mellanox.com>
Mon, 18 Apr 2016 05:39:00 +0000 (08:39 +0300)
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 <roid@mellanox.com>
configure.ac

index 0d6427f68fb39a66984909220dd27cae9e43f935..10fca7a69a6ce6afc7005db2b3bb6d77efe6e37f 100644 (file)
@@ -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