diff options
author | Andrew Stitcher <astitcher@apache.org> | 2010-02-17 22:47:41 +0000 |
---|---|---|
committer | Andrew Stitcher <astitcher@apache.org> | 2010-02-17 22:47:41 +0000 |
commit | 451296120a105b6f19415d02444731eb0989b355 (patch) | |
tree | 751f18f006a68cf3bcca77edc39dc16aeb86eacf /cpp | |
parent | 17173cbae80eb7787aa61c9b8a290dc7ed6f2d6c (diff) | |
download | qpid-python-451296120a105b6f19415d02444731eb0989b355.tar.gz |
Avoid linking to unversioned symbols in libibverbs by explicitly
linking rdma.so/rdmaconnector.so with -libverbs
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@911208 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/src/Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cpp/src/Makefile.am b/cpp/src/Makefile.am index bc8531af92..d4ed140476 100644 --- a/cpp/src/Makefile.am +++ b/cpp/src/Makefile.am @@ -231,7 +231,8 @@ rdma_la_SOURCES = \ qpid/sys/RdmaIOPlugin.cpp rdma_la_LIBADD = \ libqpidbroker.la \ - librdmawrap.la + librdmawrap.la \ + -libverbs rdma_la_LDFLAGS = $(PLUGINLDFLAGS) rdma_la_CXXFLAGS = \ $(AM_CXXFLAGS) -Wno-missing-field-initializers @@ -242,7 +243,8 @@ rdmaconnector_la_SOURCES = \ qpid/client/RdmaConnector.cpp rdmaconnector_la_LIBADD = \ libqpidclient.la \ - librdmawrap.la + librdmawrap.la \ + -libverbs rdmaconnector_la_LDFLAGS = $(PLUGINLDFLAGS) rdmaconnector_la_CXXFLAGS = \ $(AM_CXXFLAGS) -Wno-missing-field-initializers |