diff options
author | Alan Conway <aconway@apache.org> | 2008-04-21 19:19:42 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2008-04-21 19:19:42 +0000 |
commit | c17b3eb2db91a36307905c287ebab6118177caa9 (patch) | |
tree | ca048ca0f8d8a2f1d8201014ff72c4bc234a3081 /cpp/src/tests | |
parent | 3097509ae43d93c1832638f80ba2ad5810fbef44 (diff) | |
download | qpid-python-c17b3eb2db91a36307905c287ebab6118177caa9.tar.gz |
Disable compilation of amqp_0_10 codec until ready for integration.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@650227 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests')
-rw-r--r-- | cpp/src/tests/Makefile.am | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/cpp/src/tests/Makefile.am b/cpp/src/tests/Makefile.am index a6750a427a..bd020e4f77 100644 --- a/cpp/src/tests/Makefile.am +++ b/cpp/src/tests/Makefile.am @@ -6,7 +6,7 @@ extra_libs = $(CPPUNIT_LIBS) lib_client = $(abs_builddir)/../libqpidclient.la lib_common = $(abs_builddir)/../libqpidcommon.la lib_broker = $(abs_builddir)/../libqpidbroker.la -lib_amqp_0_10 = $(abs_builddir)/../libqpidamqp_0_10.la +# lib_amqp_0_10 = $(abs_builddir)/../libqpidamqp_0_10.la # # Initialize variables that are incremented with += @@ -28,7 +28,7 @@ CLEANFILES= TESTS+=unit_test check_PROGRAMS+=unit_test unit_test_LDADD=-lboost_unit_test_framework -lboost_regex \ - $(lib_client) $(lib_broker) $(lib_amqp_0_10) + $(lib_client) $(lib_broker) # $(lib_amqp_0_10) unit_test_SOURCES= unit_test.cpp unit_test.h \ BrokerFixture.h SocketProxy.h \ exception_test.cpp \ @@ -41,14 +41,16 @@ unit_test_SOURCES= unit_test.cpp unit_test.h \ ISList.cpp IList.cpp \ ClientSessionTest.cpp \ SequenceSet.cpp \ - amqp_0_10/serialize.cpp allSegmentTypes.h \ - amqp_0_10/ProxyTemplate.cpp \ - amqp_0_10/apply.cpp \ IncompleteMessageList.cpp \ - amqp_0_10/Map.cpp \ - amqp_0_10/handlers.cpp \ RangeSet.cpp +# Disabled till we move to amqp_0_10 codec. +# amqp_0_10/serialize.cpp allSegmentTypes.h \ +# amqp_0_10/ProxyTemplate.cpp \ +# amqp_0_10/apply.cpp \ +# amqp_0_10/Map.cpp \ +# amqp_0_10/handlers.cpp + check_LTLIBRARIES += libshlibtest.la libshlibtest_la_LDFLAGS = -module -rpath $(abs_builddir) |