summaryrefslogtreecommitdiff
path: root/cpp/bindings
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2012-11-29 12:15:36 +0000
committerGordon Sim <gsim@apache.org>2012-11-29 12:15:36 +0000
commit9a421e8334eef5cf198797cc9b92fbf3f6b9e751 (patch)
treef099f3bed4566e4332078f07e6f8a7d65a4b8616 /cpp/bindings
parente9d1d6f588e6ff0fe4ca3c76027634eaeb3f3bf4 (diff)
downloadqpid-python-9a421e8334eef5cf198797cc9b92fbf3f6b9e751.tar.gz
QPID-3723: Applied patch from Fraser Adams for explicit linking
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1415137 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/bindings')
-rw-r--r--cpp/bindings/qmf2/examples/cpp/Makefile.am8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/bindings/qmf2/examples/cpp/Makefile.am b/cpp/bindings/qmf2/examples/cpp/Makefile.am
index 062fbd0a85..b0321d4e5d 100644
--- a/cpp/bindings/qmf2/examples/cpp/Makefile.am
+++ b/cpp/bindings/qmf2/examples/cpp/Makefile.am
@@ -24,13 +24,13 @@ AM_CPPFLAGS = $(INCLUDE)
noinst_PROGRAMS=agent event_driven_list_agents list_agents print_events
agent_SOURCES=agent.cpp
-agent_LDADD=$(top_builddir)/src/libqmf2.la
+agent_LDADD=$(top_builddir)/src/libqmf2.la -lqpidtypes -lqpidmessaging
list_agents_SOURCES=list_agents.cpp
-list_agents_LDADD=$(top_builddir)/src/libqmf2.la
+list_agents_LDADD=$(top_builddir)/src/libqmf2.la -lqpidmessaging
event_driven_list_agents_SOURCES=event_driven_list_agents.cpp
-event_driven_list_agents_LDADD=$(top_builddir)/src/libqmf2.la
+event_driven_list_agents_LDADD=$(top_builddir)/src/libqmf2.la -lqpidmessaging
print_events_SOURCES=print_events.cpp
-print_events_LDADD=$(top_builddir)/src/libqmf2.la
+print_events_LDADD=$(top_builddir)/src/libqmf2.la -lqpidtypes -lqpidmessaging