diff options
author | Ted Ross <tross@apache.org> | 2011-10-17 17:21:09 +0000 |
---|---|---|
committer | Ted Ross <tross@apache.org> | 2011-10-17 17:21:09 +0000 |
commit | 4a7552bd9ee9162528d5d1b2689aeeb21ec364a3 (patch) | |
tree | 7b16aa1deb466fc975c20016b3d12bd657e5b787 /cpp | |
parent | 0174f5f771ed41663ec4c0deb6c0f04453a86804 (diff) | |
download | qpid-python-4a7552bd9ee9162528d5d1b2689aeeb21ec364a3.tar.gz |
NO-JIRA - Fixed a couple of problems with "make dist".
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1185293 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/src/qmf.mk | 9 | ||||
-rw-r--r-- | cpp/src/tests/Makefile.am | 9 |
2 files changed, 11 insertions, 7 deletions
diff --git a/cpp/src/qmf.mk b/cpp/src/qmf.mk index 4da8470f2f..3b6583bfaf 100644 --- a/cpp/src/qmf.mk +++ b/cpp/src/qmf.mk @@ -93,6 +93,7 @@ libqmf2_la_SOURCES = \ qmf/AgentEventImpl.h \ qmf/AgentImpl.h \ qmf/AgentSession.cpp \ + qmf/AgentSessionImpl.h \ qmf/AgentSubscription.cpp \ qmf/AgentSubscription.h \ qmf/ConsoleEvent.cpp \ @@ -106,19 +107,21 @@ libqmf2_la_SOURCES = \ qmf/Data.cpp \ qmf/DataImpl.h \ qmf/EventNotifierImpl.cpp \ - qmf/PosixEventNotifier.cpp \ - qmf/PosixEventNotifierImpl.cpp \ + qmf/EventNotifierImpl.h \ qmf/exceptions.cpp \ qmf/Expression.cpp \ qmf/Expression.h \ qmf/Hash.cpp \ qmf/Hash.h \ + qmf/PosixEventNotifier.cpp \ + qmf/PosixEventNotifierImpl.cpp \ + qmf/PosixEventNotifierImpl.h \ qmf/PrivateImplRef.h \ qmf/Query.cpp \ qmf/QueryImpl.h \ - qmf/Schema.cpp \ qmf/SchemaCache.cpp \ qmf/SchemaCache.h \ + qmf/Schema.cpp \ qmf/SchemaId.cpp \ qmf/SchemaIdImpl.h \ qmf/SchemaImpl.h \ diff --git a/cpp/src/tests/Makefile.am b/cpp/src/tests/Makefile.am index f68a1462a9..3c9ca1b70f 100644 --- a/cpp/src/tests/Makefile.am +++ b/cpp/src/tests/Makefile.am @@ -75,7 +75,7 @@ unit_test_SOURCES= unit_test.cpp unit_test.h \ MessagingThreadTests.cpp \ MessagingFixture.h \ ClientSessionTest.cpp \ - BrokerFixture.h SocketProxy.h \ + BrokerFixture.h \ exception_test.cpp \ RefCounted.cpp \ SessionState.cpp logging.cpp \ @@ -350,7 +350,8 @@ EXTRA_DIST += \ stop_broker.ps1 \ topictest.ps1 \ run_queue_flow_limit_tests \ - run_msg_group_tests + run_msg_group_tests \ + ipv6_test check_LTLIBRARIES += libdlclose_noop.la libdlclose_noop_la_LDFLAGS = -module -rpath $(abs_builddir) @@ -363,7 +364,7 @@ CLEANFILES+=valgrind.out *.log *.vglog* dummy_test qpidd.port $(unit_wrappers) LONG_TESTS+=start_broker \ fanout_perftest shared_perftest multiq_perftest topic_perftest run_ring_queue_test \ - run_msg_groups_tests_soak \ + run_msg_group_tests_soak \ stop_broker \ run_long_federation_sys_tests \ run_failover_soak reliable_replication_test \ @@ -378,7 +379,7 @@ EXTRA_DIST+= \ reliable_replication_test \ federated_cluster_test_with_node_failure \ sasl_test_setup.sh \ - run_msg_groups_tests_soak + run_msg_group_tests_soak check-long: $(MAKE) check TESTS="$(LONG_TESTS)" VALGRIND= |