diff options
author | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2010-05-29 19:44:35 +0000 |
---|---|---|
committer | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2010-05-29 19:44:35 +0000 |
commit | e5a49fff24c79431782da107185431b7835ef492 (patch) | |
tree | 8bb6ca1aaad4fed82443dcb7d420533c31eb3eb4 /sca-cpp/trunk/components/chat | |
parent | 7eef73b80c5f6c4f34f57cc48a46383689acecca (diff) |
Fix distribution build, add missing files and samples and fix path to libraries. GCC 4.5 is used if available but not installed automatically.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@949435 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-cpp/trunk/components/chat')
-rw-r--r-- | sca-cpp/trunk/components/chat/Makefile.am | 5 | ||||
-rw-r--r-- | sca-cpp/trunk/components/chat/chat.composite | 4 |
2 files changed, 5 insertions, 4 deletions
diff --git a/sca-cpp/trunk/components/chat/Makefile.am b/sca-cpp/trunk/components/chat/Makefile.am index 804238a5d7..e7093caa2e 100644 --- a/sca-cpp/trunk/components/chat/Makefile.am +++ b/sca-cpp/trunk/components/chat/Makefile.am @@ -31,6 +31,9 @@ vysper.prefix: $(top_builddir)/config.status comp_LTLIBRARIES = libchatter.la libchatter_la_SOURCES = chatter.cpp libchatter_la_LDFLAGS = -L${LIBSTROPHE_LIB} -R${LIBSTROPHE_LIB} -lstrophe -lexpat -lssl -lresolv +noinst_DATA = libchatter.so +libchatter.so: + ln -s .libs/libchatter.so xmpp_test_SOURCES = xmpp-test.cpp xmpp_test_LDFLAGS = -L${LIBSTROPHE_LIB} -R${LIBSTROPHE_LIB} -lstrophe -lexpat -lssl -lresolv @@ -43,9 +46,7 @@ noinst_PROGRAMS = xmpp-test client-test if WANT_VYSPER AM_JAVACFLAGS = -cp `${top_builddir}/components/chat/vysper-classpath ${VYSPER_PREFIX}`${JAVAROOT} - noinst_JAVA = test/*.java - CLEANFILES = test/*.class TESTS = echo-test diff --git a/sca-cpp/trunk/components/chat/chat.composite b/sca-cpp/trunk/components/chat/chat.composite index 569dbfc4b2..15901b51da 100644 --- a/sca-cpp/trunk/components/chat/chat.composite +++ b/sca-cpp/trunk/components/chat/chat.composite @@ -23,7 +23,7 @@ name="chat"> <component name="print-sender"> - <implementation.cpp path=".libs" library="libchatter"/> + <implementation.cpp path="." library="libchatter"/> <property name="jid">sca1@localhost</property> <property name="password">sca1</property> <service name="print-sender"> @@ -32,7 +32,7 @@ </component> <component name="print-chatter"> - <implementation.cpp path=".libs" library="libchatter"/> + <implementation.cpp path="." library="libchatter"/> <property name="jid">sca2@localhost</property> <property name="password">sca2</property> <service name="print-chatter"> |