From 65ce7b731aa61902ab7a58680d5581c4677bc6aa Mon Sep 17 00:00:00 2001 From: Danny Al-Gaaf Date: Wed, 11 Feb 2015 14:37:01 +0100 Subject: [PATCH] fix configure to reflect the missing libs for xio Signed-off-by: Danny Al-Gaaf --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 3f5e6dd172b75..bd4ce62d1e81d 100644 --- a/configure.ac +++ b/configure.ac @@ -535,9 +535,9 @@ 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 not found])) - AC_CHECK_LIB([ibverbs], [ibv_query_device], [], AC_MSG_FAILURE([OFED not found])) - AC_CHECK_LIB([rdmacm], [rdma_connect], [], AC_MSG_FAILURE([OFED not found])) + 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, [], -- 2.39.5