summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--configure.ac7
-rw-r--r--glusterfs.spec.in5
2 files changed, 11 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 89ea35ce6f1..7392b706bb8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -605,6 +605,13 @@ if test "x$enable_ibverbs" != "xno"; then
[HAVE_LIBIBVERBS="yes"],
[HAVE_LIBIBVERBS="no"])
AC_CHECK_LIB([rdmacm], [rdma_create_id], [HAVE_RDMACM="yes"], [HAVE_RDMACM="no"])
+ if test "x$HAVE_RDMACM" = "xyes" ; then
+ AC_CHECK_DECLS(
+ [RDMA_OPTION_ID_REUSEADDR],
+ [],
+ [AC_ERROR([Need at least version 1.0.15 of librdmacm])],
+ [[#include <rdma/rdma_cma.h>]])
+ fi
fi
if test "x$enable_ibverbs" = "xyes"; then
diff --git a/glusterfs.spec.in b/glusterfs.spec.in
index d6cb8acc5e9..f71ba1a1903 100644
--- a/glusterfs.spec.in
+++ b/glusterfs.spec.in
@@ -419,7 +419,7 @@ This package provides the base GlusterFS libraries
Summary: GlusterFS rdma support for ib-verbs
Group: Applications/File
BuildRequires: libibverbs-devel
-BuildRequires: librdmacm-devel
+BuildRequires: librdmacm-devel >= 1.0.15
Requires: %{name} = %{version}-%{release}
%description rdma
@@ -1101,6 +1101,9 @@ fi
%changelog
+* Sat Mar 28 2015 Mohammed Rafi KC <rkavunga@redhat.com>
+- Add dependency for librdmacm version >= 1.0.15 (#1206744)
+
* Thu Mar 26 2015 Kaleb S. KEITHLEY <kkeithle@redhat.com>
- attr dependency (#1174627)