You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by da...@apache.org on 2006/04/27 06:49:00 UTC

svn commit: r397391 - in /webservices/axis2/trunk/c: modules/ modules/core/ modules/core/engine/ modules/mod_addr/ modules/wsdl/woden/ test/core/addr/ test/core/clientapi/ test/core/context/ test/core/deployment/ test/core/description/ test/core/engine...

Author: damitha
Date: Wed Apr 26 21:48:57 2006
New Revision: 397391

URL: http://svn.apache.org/viewcvs?rev=397391&view=rev
Log:
This fix is in reply to Samisa's mail under the heading
[Axis2] Same source file compiled multiple times in the build

Modified:
    webservices/axis2/trunk/c/modules/Makefile.am
    webservices/axis2/trunk/c/modules/core/Makefile.am
    webservices/axis2/trunk/c/modules/core/engine/Makefile.am
    webservices/axis2/trunk/c/modules/mod_addr/Makefile.am
    webservices/axis2/trunk/c/modules/wsdl/woden/Makefile.am
    webservices/axis2/trunk/c/test/core/addr/Makefile.am
    webservices/axis2/trunk/c/test/core/clientapi/Makefile.am
    webservices/axis2/trunk/c/test/core/context/Makefile.am
    webservices/axis2/trunk/c/test/core/deployment/Makefile.am
    webservices/axis2/trunk/c/test/core/description/Makefile.am
    webservices/axis2/trunk/c/test/core/engine/Makefile.am
    webservices/axis2/trunk/c/test/core/transport/http/Makefile.am
    webservices/axis2/trunk/c/test/itest/whitemesa/round1/Makefile.am
    webservices/axis2/trunk/c/test/itest/whitemesa/round2/Makefile.am
    webservices/axis2/trunk/c/test/unit/Makefile.am
    webservices/axis2/trunk/c/test/unit/core/context/Makefile.am
    webservices/axis2/trunk/c/test/unit/core/deployment/Makefile.am
    webservices/axis2/trunk/c/test/unit/core/description/Makefile.am
    webservices/axis2/trunk/c/test/unit/core/engine/Makefile.am
    webservices/axis2/trunk/c/test/unit/core/phaseresolver/Makefile.am
    webservices/axis2/trunk/c/test/unit/wsdl/Makefile.am

Modified: webservices/axis2/trunk/c/modules/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/Makefile.am?rev=397391&r1=397390&r2=397391&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/Makefile.am Wed Apr 26 21:48:57 2006
@@ -1,3 +1,3 @@
 TESTS =
-SUBDIRS = platforms/unix util xml wsdl core mod_addr
+SUBDIRS = platforms/unix util xml wsdl core mod_addr core/transport core/transport/http/server/simple_axis2_server 
 EXTRA_DIST=platforms/windows

Modified: webservices/axis2/trunk/c/modules/core/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/Makefile.am?rev=397391&r1=397390&r2=397391&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/core/Makefile.am Wed Apr 26 21:48:57 2006
@@ -1 +1,85 @@
-SUBDIRS = addr clientapi context deployment description engine phaseresolver receivers transport transport/http/server/simple_axis2_server util
+lib_LTLIBRARIES = libaxis2_engine.la
+libaxis2_engine_la_SOURCES = engine/handler.c \
+                                engine/conf.c \
+                                engine/phase.c \
+                                engine/disp_checker.c \
+                                engine/event.c \
+                                engine/addr_disp.c \
+                                engine/req_uri_disp.c \
+                                engine/disp.c \
+                                engine/soap_action_disp.c \
+                                engine/soap_body_disp.c \
+                                engine/ctx_handler.c \
+                                engine/engine.c \
+                                description/op.c \
+                                description/svc.c \
+                                description/module.c \
+                                description/module_desc.c \
+                                description/svc_grp.c \
+                                description/phase_rule.c \
+                                description/handler_desc.c \
+                                description/flow.c \
+                                description/flow_container.c \
+                                description/transport_in_desc.c \
+                                description/transport_out_desc.c \
+                                receivers/msg_recv.c \
+                                receivers/raw_xml_in_out_msg_recv.c \
+                                receivers/svr_callback.c \
+                                deployment/phases_info.c \
+                                deployment/desc_builder.c \
+                                deployment/arch_reader.c \
+                                deployment/dep_engine.c \
+                                deployment/arch_file_data.c \
+                                deployment/ws_info.c \
+                                deployment/ws_info_list.c \
+                                deployment/svc_builder.c \
+                                deployment/svc_grp_builder.c \
+                                deployment/module_builder.c \
+                                deployment/conf_builder.c \
+                                deployment/repos_listener.c \
+                                deployment/conf_init.c \
+                                context/ctx.c \
+                                context/msg_ctx.c \
+                                context/op_ctx.c \
+                                context/svc_ctx.c \
+                                context/svc_grp_ctx.c \
+                                context/conf_ctx.c \
+                                addr/relates_to.c \
+                                addr/svc_name.c \
+                                addr/any_content_type.c \
+                                addr/endpoint_ref.c \
+                                addr/msg_info_headers.c \
+                                clientapi/async_result.c \
+                                clientapi/callback.c \
+                                clientapi/mep_client.c \
+                                clientapi/listener_manager.c \
+                                clientapi/callback_recv.c \
+                                clientapi/call.c \
+                                clientapi/msg_sender.c \
+                                clientapi/stub.c \
+                                phaseresolver/phase_holder.c \
+                                phaseresolver/phase_resolver.c \
+                                util/core_utils.c \
+                                transport/http/http_worker.c \
+                                transport/http/http_transport_utils.c\
+                				transport/http/http_simple_request.c\
+                				transport/http/http_simple_response.c\
+				                transport/http/http_request_line.c\
+				                transport/http/http_status_line.c\
+				                transport/http/http_header.c\
+                                transport/http/http_out_transport_info.c\
+                                transport/http/http_chunked_stream.c
+
+INCLUDES = -I$(top_builddir)/include \
+            -I$(top_builddir)/modules/util \
+            -I$(top_builddir)/modules/wsdl \
+            -I$(top_builddir)/modules/core/description \
+            -I$(top_builddir)/modules/core/engine \
+            -I$(top_builddir)/modules/core/phaseresolver \
+            -I$(top_builddir)/modules/core/deployment \
+            -I$(top_builddir)/modules/core/transport \
+            -I$(top_builddir)/modules/core/context \
+            -I$(top_builddir)/modules/core/util \
+            -I$(top_builddir)/modules/core/clientapi \
+            -I$(top_builddir)/modules/xml/parser \
+            -I$(top_builddir)/modules/platforms

Modified: webservices/axis2/trunk/c/modules/core/engine/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/engine/Makefile.am?rev=397391&r1=397390&r2=397391&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/engine/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/core/engine/Makefile.am Wed Apr 26 21:48:57 2006
@@ -1,9 +1,9 @@
 TESTS =
-lib_LTLIBRARIES = libaxis2_engine.la
+noinst_LTLIBRARIES = libaxis2_int_engine.la
 noinst_HEADERS = axis2_engine.h \
                     axis2_event.h
 
-libaxis2_engine_la_SOURCES = handler.c \
+libaxis2_int_engine_la_SOURCES = handler.c \
                                 conf.c \
                                 phase.c \
                                 disp_checker.c \
@@ -14,65 +14,7 @@
                                 soap_action_disp.c \
                                 soap_body_disp.c \
                                 ctx_handler.c \
-                                engine.c \
-                                ../description/op.c \
-                                ../description/svc.c \
-                                ../description/module.c \
-                                ../description/module_desc.c \
-                                ../description/svc_grp.c \
-                                ../description/phase_rule.c \
-                                ../description/handler_desc.c \
-                                ../description/flow.c \
-                                ../description/flow_container.c \
-                                ../description/transport_in_desc.c \
-                                ../description/transport_out_desc.c \
-                                ../receivers/msg_recv.c \
-                                ../receivers/raw_xml_in_out_msg_recv.c \
-                                ../receivers/svr_callback.c \
-                                ../deployment/phases_info.c \
-                                ../deployment/desc_builder.c \
-                                ../deployment/arch_reader.c \
-                                ../deployment/dep_engine.c \
-                                ../deployment/arch_file_data.c \
-                                ../deployment/ws_info.c \
-                                ../deployment/ws_info_list.c \
-                                ../deployment/svc_builder.c \
-                                ../deployment/svc_grp_builder.c \
-                                ../deployment/module_builder.c \
-                                ../deployment/conf_builder.c \
-                                ../deployment/repos_listener.c \
-                                ../deployment/conf_init.c \
-                                ../context/ctx.c \
-                                ../context/msg_ctx.c \
-                                ../context/op_ctx.c \
-                                ../context/svc_ctx.c \
-                                ../context/svc_grp_ctx.c \
-                                ../context/conf_ctx.c \
-                                ../addr/relates_to.c \
-                                ../addr/svc_name.c \
-                                ../addr/any_content_type.c \
-                                ../addr/endpoint_ref.c \
-                                ../addr/msg_info_headers.c \
-                                ../clientapi/async_result.c \
-                                ../clientapi/callback.c \
-                                ../clientapi/mep_client.c \
-                                ../clientapi/listener_manager.c \
-                                ../clientapi/callback_recv.c \
-                                ../clientapi/call.c \
-                                ../clientapi/msg_sender.c \
-                                ../clientapi/stub.c \
-                                ../phaseresolver/phase_holder.c \
-                                ../phaseresolver/phase_resolver.c \
-                                ../util/core_utils.c \
-                                ../transport/http/http_worker.c \
-                                ../transport/http/http_transport_utils.c\
-                				../transport/http/http_simple_request.c\
-                				../transport/http/http_simple_response.c\
-				                ../transport/http/http_request_line.c\
-				                ../transport/http/http_status_line.c\
-				                ../transport/http/http_header.c\
-                                ../transport/http/http_out_transport_info.c\
-                                ../transport/http/http_chunked_stream.c
+                                engine.c
 
 INCLUDES = -I$(top_builddir)/include \
             -I$(top_builddir)/modules/util \

Modified: webservices/axis2/trunk/c/modules/mod_addr/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/mod_addr/Makefile.am?rev=397391&r1=397390&r2=397391&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/mod_addr/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/mod_addr/Makefile.am Wed Apr 26 21:48:57 2006
@@ -9,7 +9,7 @@
 
 libaxis2_mod_addr_la_LIBADD = $(top_builddir)/modules/util/libaxis2_util.la \
                     $(top_builddir)/modules/xml/om/libaxis2_om.la \
-					$(top_builddir)/modules/core/engine/libaxis2_engine.la
+					$(top_builddir)/modules/core/libaxis2_engine.la
 
 INCLUDES = -I$(top_builddir)/include \
             -I$(top_builddir)/modules/util \

Modified: webservices/axis2/trunk/c/modules/wsdl/woden/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/wsdl/woden/Makefile.am?rev=397391&r1=397390&r2=397391&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/wsdl/woden/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/wsdl/woden/Makefile.am Wed Apr 26 21:48:57 2006
@@ -1,17 +1,7 @@
 TESTS =
 lib_LTLIBRARIES = libaxis2_woden.la
 libaxis2_woden_la_SOURCES = \
-							schema.c \
-							imported_schema.c \
-							inlined_schema.c \
-							xml_attr.c \
-							qname_attr.c \
-							uri_attr.c \
-							qname_list_attr.c \
-							string_attr.c \
-							qname_list_or_token_any_attr.c \
-							qname_or_token_any_attr.c \
-							bool_attr.c
+							nested_element.c
 
 INCLUDES = -I$(top_builddir)/include \
             -I$(top_builddir)/modules/util \

Modified: webservices/axis2/trunk/c/test/core/addr/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/core/addr/Makefile.am?rev=397391&r1=397390&r2=397391&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/core/addr/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/core/addr/Makefile.am Wed Apr 26 21:48:57 2006
@@ -11,7 +11,7 @@
 					$(top_builddir)/modules/platforms/unix/libaxis2_unix.la \
 					$(top_builddir)/modules/xml/om/libaxis2_om.la \
 					$(top_builddir)/modules/xml/soap/libaxis2_soap.la \
-					$(top_builddir)/modules/core/engine/libaxis2_engine.la \
+					$(top_builddir)/modules/core/libaxis2_engine.la \
 					$(top_builddir)/modules/wsdl/libaxis2_wsdl.la \
 					$(top_builddir)/modules/xml/parser/libxml2/libaxis2_parser.la \
 	                $(GUTHTHILA_LIBS) \

Modified: webservices/axis2/trunk/c/test/core/clientapi/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/core/clientapi/Makefile.am?rev=397391&r1=397390&r2=397391&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/core/clientapi/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/core/clientapi/Makefile.am Wed Apr 26 21:48:57 2006
@@ -12,7 +12,7 @@
 					$(top_builddir)/modules/platforms/unix/libaxis2_unix.la \
 					$(top_builddir)/modules/xml/om/libaxis2_om.la \
 					$(top_builddir)/modules/xml/soap/libaxis2_soap.la \
-					$(top_builddir)/modules/core/engine/libaxis2_engine.la \
+					$(top_builddir)/modules/core/libaxis2_engine.la \
 					$(top_builddir)/modules/wsdl/libaxis2_wsdl.la \
                     $(top_builddir)/modules/xml/parser/libxml2/libaxis2_parser.la \
 					$(top_builddir)/modules/core/transport/http/sender/libaxis2_http_sender.la \
@@ -25,7 +25,7 @@
 					$(top_builddir)/modules/platforms/unix/libaxis2_unix.la \
 					$(top_builddir)/modules/xml/om/libaxis2_om.la \
 					$(top_builddir)/modules/xml/soap/libaxis2_soap.la \
-					$(top_builddir)/modules/core/engine/libaxis2_engine.la \
+					$(top_builddir)/modules/core/libaxis2_engine.la \
 					$(top_builddir)/modules/wsdl/libaxis2_wsdl.la \
                     $(top_builddir)/modules/xml/parser/libxml2/libaxis2_parser.la \
 					$(top_builddir)/modules/core/transport/http/sender/libaxis2_http_sender.la \

Modified: webservices/axis2/trunk/c/test/core/context/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/core/context/Makefile.am?rev=397391&r1=397390&r2=397391&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/core/context/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/core/context/Makefile.am Wed Apr 26 21:48:57 2006
@@ -12,7 +12,7 @@
 					$(top_builddir)/modules/platforms/unix/libaxis2_unix.la \
 					$(top_builddir)/modules/xml/om/libaxis2_om.la \
 					$(top_builddir)/modules/xml/soap/libaxis2_soap.la \
-					$(top_builddir)/modules/core/engine/libaxis2_engine.la \
+					$(top_builddir)/modules/core/libaxis2_engine.la \
 					$(top_builddir)/modules/wsdl/libaxis2_wsdl.la \
 					$(top_builddir)/modules/xml/parser/libxml2/libaxis2_parser.la \
 			        $(GUTHTHILA_LIBS) \

Modified: webservices/axis2/trunk/c/test/core/deployment/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/core/deployment/Makefile.am?rev=397391&r1=397390&r2=397391&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/core/deployment/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/core/deployment/Makefile.am Wed Apr 26 21:48:57 2006
@@ -10,7 +10,7 @@
 					$(top_builddir)/modules/platforms/unix/libaxis2_unix.la \
 					$(top_builddir)/modules/xml/om/libaxis2_om.la \
 					$(top_builddir)/modules/xml/soap/libaxis2_soap.la \
-					$(top_builddir)/modules/core/engine/libaxis2_engine.la \
+					$(top_builddir)/modules/core/libaxis2_engine.la \
 					$(top_builddir)/modules/wsdl/libaxis2_wsdl.la \
 					$(top_builddir)/modules/xml/parser/libxml2/libaxis2_parser.la \
                     $(GUTHTHILA_LIBS) \

Modified: webservices/axis2/trunk/c/test/core/description/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/core/description/Makefile.am?rev=397391&r1=397390&r2=397391&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/core/description/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/core/description/Makefile.am Wed Apr 26 21:48:57 2006
@@ -10,7 +10,7 @@
 					$(top_builddir)/modules/platforms/unix/libaxis2_unix.la \
 					$(top_builddir)/modules/xml/om/libaxis2_om.la \
 					$(top_builddir)/modules/xml/soap/libaxis2_soap.la \
-					$(top_builddir)/modules/core/engine/libaxis2_engine.la \
+					$(top_builddir)/modules/core/libaxis2_engine.la \
 					$(top_builddir)/modules/wsdl/libaxis2_wsdl.la \
 					$(top_builddir)/modules/xml/parser/libxml2/libaxis2_parser.la \
                     -lpthread \

Modified: webservices/axis2/trunk/c/test/core/engine/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/core/engine/Makefile.am?rev=397391&r1=397390&r2=397391&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/core/engine/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/core/engine/Makefile.am Wed Apr 26 21:48:57 2006
@@ -12,7 +12,7 @@
 					$(top_builddir)/modules/platforms/unix/libaxis2_unix.la \
 					$(top_builddir)/modules/xml/om/libaxis2_om.la \
 					$(top_builddir)/modules/xml/soap/libaxis2_soap.la \
-					$(top_builddir)/modules/core/engine/libaxis2_engine.la \
+					$(top_builddir)/modules/core/libaxis2_engine.la \
 					$(top_builddir)/modules/wsdl/libaxis2_wsdl.la \
 					$(top_builddir)/modules/xml/parser/libxml2/libaxis2_parser.la \
 	                $(GUTHTHILA_LIBS) \

Modified: webservices/axis2/trunk/c/test/core/transport/http/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/core/transport/http/Makefile.am?rev=397391&r1=397390&r2=397391&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/core/transport/http/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/core/transport/http/Makefile.am Wed Apr 26 21:48:57 2006
@@ -12,7 +12,7 @@
 								$(top_builddir)/modules/platforms/unix/libaxis2_unix.la \
 								$(top_builddir)/modules/xml/om/libaxis2_om.la \
 								$(top_builddir)/modules/xml/soap/libaxis2_soap.la \
-								$(top_builddir)/modules/core/engine/libaxis2_engine.la \
+								$(top_builddir)/modules/core/libaxis2_engine.la \
 								$(top_builddir)/modules/wsdl/libaxis2_wsdl.la \
 								$(top_builddir)/modules/xml/parser/libxml2/libaxis2_parser.la \
 								$(top_builddir)/modules/core/transport/http/sender/libaxis2_http_sender.la \

Modified: webservices/axis2/trunk/c/test/itest/whitemesa/round1/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/itest/whitemesa/round1/Makefile.am?rev=397391&r1=397390&r2=397391&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/itest/whitemesa/round1/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/itest/whitemesa/round1/Makefile.am Wed Apr 26 21:48:57 2006
@@ -7,7 +7,7 @@
 					$(top_builddir)/modules/platforms/unix/libaxis2_unix.la \
 					$(top_builddir)/modules/xml/om/libaxis2_om.la \
 					$(top_builddir)/modules/xml/soap/libaxis2_soap.la \
-					$(top_builddir)/modules/core/engine/libaxis2_engine.la \
+					$(top_builddir)/modules/core/libaxis2_engine.la \
 					$(top_builddir)/modules/wsdl/libaxis2_wsdl.la \
 					$(top_builddir)/modules/xml/parser/libxml2/libaxis2_parser.la \
 					$(top_builddir)//modules/core/transport/http/sender/libaxis2_http_sender.la \

Modified: webservices/axis2/trunk/c/test/itest/whitemesa/round2/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/itest/whitemesa/round2/Makefile.am?rev=397391&r1=397390&r2=397391&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/itest/whitemesa/round2/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/itest/whitemesa/round2/Makefile.am Wed Apr 26 21:48:57 2006
@@ -7,7 +7,7 @@
 					$(top_builddir)/modules/platforms/unix/libaxis2_unix.la \
 					$(top_builddir)/modules/xml/om/libaxis2_om.la \
 					$(top_builddir)/modules/xml/soap/libaxis2_soap.la \
-					$(top_builddir)/modules/core/engine/libaxis2_engine.la \
+					$(top_builddir)/modules/core/libaxis2_engine.la \
 					$(top_builddir)/modules/wsdl/libaxis2_wsdl.la \
 					$(top_builddir)/modules/xml/parser/libxml2/libaxis2_parser.la \
 					$(top_builddir)//modules/core/transport/http/sender/libaxis2_http_sender.la \

Modified: webservices/axis2/trunk/c/test/unit/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/unit/Makefile.am?rev=397391&r1=397390&r2=397391&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/unit/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/unit/Makefile.am Wed Apr 26 21:48:57 2006
@@ -18,7 +18,7 @@
 					$(top_builddir)/modules/platforms/unix/libaxis2_unix.la \
 					$(top_builddir)/modules/xml/om/libaxis2_om.la \
 					$(top_builddir)/modules/xml/soap/libaxis2_soap.la \
-					$(top_builddir)/modules/core/engine/libaxis2_engine.la \
+					$(top_builddir)/modules/core/libaxis2_engine.la \
 					$(top_builddir)/modules/wsdl/libaxis2_wsdl.la \
 					$(top_builddir)/modules/xml/parser/libxml2/libaxis2_parser.la \
 					$(top_builddir)//modules/core/transport/http/sender/libaxis2_http_sender.la \

Modified: webservices/axis2/trunk/c/test/unit/core/context/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/unit/core/context/Makefile.am?rev=397391&r1=397390&r2=397391&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/unit/core/context/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/unit/core/context/Makefile.am Wed Apr 26 21:48:57 2006
@@ -20,7 +20,7 @@
 				        $(top_builddir)/modules/platforms/unix/libaxis2_unix.la \
 						$(top_builddir)/modules/xml/om/libaxis2_om.la \
 						$(top_builddir)/modules/xml/soap/libaxis2_soap.la \
-						$(top_builddir)/modules/core/engine/libaxis2_engine.la \
+						$(top_builddir)/modules/core/libaxis2_engine.la \
 						$(top_builddir)/modules/wsdl/libaxis2_wsdl.la \
 						$(top_builddir)/modules/xml/parser/libxml2/libaxis2_parser.la \
                         -lcutest \

Modified: webservices/axis2/trunk/c/test/unit/core/deployment/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/unit/core/deployment/Makefile.am?rev=397391&r1=397390&r2=397391&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/unit/core/deployment/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/unit/core/deployment/Makefile.am Wed Apr 26 21:48:57 2006
@@ -32,7 +32,7 @@
 				    $(top_builddir)/modules/platforms/unix/libaxis2_unix.la \
 					$(top_builddir)/modules/xml/om/libaxis2_om.la \
 					$(top_builddir)/modules/xml/soap/libaxis2_soap.la \
-					$(top_builddir)/modules/core/engine/libaxis2_engine.la \
+					$(top_builddir)/modules/core/libaxis2_engine.la \
 					$(top_builddir)/modules/wsdl/libaxis2_wsdl.la \
 					$(top_builddir)/modules/xml/parser/libxml2/libaxis2_parser.la \
                      -lcutest \

Modified: webservices/axis2/trunk/c/test/unit/core/description/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/unit/core/description/Makefile.am?rev=397391&r1=397390&r2=397391&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/unit/core/description/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/unit/core/description/Makefile.am Wed Apr 26 21:48:57 2006
@@ -33,7 +33,7 @@
 				    $(top_builddir)/modules/platforms/unix/libaxis2_unix.la \
 					$(top_builddir)/modules/xml/om/libaxis2_om.la \
 					$(top_builddir)/modules/xml/soap/libaxis2_soap.la \
-					$(top_builddir)/modules/core/engine/libaxis2_engine.la \
+					$(top_builddir)/modules/core/libaxis2_engine.la \
 					$(top_builddir)/modules/wsdl/libaxis2_wsdl.la \
 					$(top_builddir)/modules/xml/parser/libxml2/libaxis2_parser.la \
                      -lcutest \

Modified: webservices/axis2/trunk/c/test/unit/core/engine/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/unit/core/engine/Makefile.am?rev=397391&r1=397390&r2=397391&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/unit/core/engine/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/unit/core/engine/Makefile.am Wed Apr 26 21:48:57 2006
@@ -27,7 +27,7 @@
 				    $(top_builddir)/modules/platforms/unix/libaxis2_unix.la \
 					$(top_builddir)/modules/xml/om/libaxis2_om.la \
 					$(top_builddir)/modules/xml/soap/libaxis2_soap.la \
-					$(top_builddir)/modules/core/engine/libaxis2_engine.la \
+					$(top_builddir)/modules/core/libaxis2_engine.la \
 					$(top_builddir)/modules/wsdl/libaxis2_wsdl.la \
 					$(top_builddir)/modules/xml/parser/libxml2/libaxis2_parser.la \
                      -lcutest \

Modified: webservices/axis2/trunk/c/test/unit/core/phaseresolver/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/unit/core/phaseresolver/Makefile.am?rev=397391&r1=397390&r2=397391&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/unit/core/phaseresolver/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/unit/core/phaseresolver/Makefile.am Wed Apr 26 21:48:57 2006
@@ -31,7 +31,7 @@
 					$(top_builddir)/modules/platforms/unix/libaxis2_unix.la \
 					$(top_builddir)/modules/xml/om/libaxis2_om.la \
 					$(top_builddir)/modules/xml/soap/libaxis2_soap.la \
-					$(top_builddir)/modules/core/engine/libaxis2_engine.la \
+					$(top_builddir)/modules/core/libaxis2_engine.la \
 					$(top_builddir)/modules/wsdl/libaxis2_wsdl.la \
 					$(top_builddir)/modules/xml/parser/libxml2/libaxis2_parser.la \
                     $(GUTHTHILA_LIBS) \

Modified: webservices/axis2/trunk/c/test/unit/wsdl/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/unit/wsdl/Makefile.am?rev=397391&r1=397390&r2=397391&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/unit/wsdl/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/unit/wsdl/Makefile.am Wed Apr 26 21:48:57 2006
@@ -33,7 +33,7 @@
 					$(top_builddir)/modules/platforms/unix/libaxis2_unix.la \
 					$(top_builddir)/modules/xml/om/libaxis2_om.la \
 					$(top_builddir)/modules/xml/soap/libaxis2_soap.la \
-					$(top_builddir)/modules/core/engine/libaxis2_engine.la \
+					$(top_builddir)/modules/core/libaxis2_engine.la \
 					$(top_builddir)/modules/wsdl/libaxis2_wsdl.la \
 					$(top_builddir)/modules/xml/parser/libxml2/libaxis2_parser.la \
                     $(GUTHTHILA_LIBS) \