You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by sa...@apache.org on 2005/10/13 05:47:04 UTC

svn commit: r320635 - in /webservices/axis2/trunk/c/modules/util/test: Makefile.am hash_test.c

Author: samisa
Date: Wed Oct 12 20:46:57 2005
New Revision: 320635

URL: http://svn.apache.org/viewcvs?rev=320635&view=rev
Log:
Fixed make related stuff to define dependancies correctly

Modified:
    webservices/axis2/trunk/c/modules/util/test/Makefile.am
    webservices/axis2/trunk/c/modules/util/test/hash_test.c

Modified: webservices/axis2/trunk/c/modules/util/test/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/util/test/Makefile.am?rev=320635&r1=320634&r2=320635&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/util/test/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/util/test/Makefile.am Wed Oct 12 20:46:57 2005
@@ -3,5 +3,5 @@
 AM_CPPFLAGS = $(CPPFLAGS)
 hash_test_SOURCES = hash_test.c
 
-hash_test_LDADD   =  $(LDFLAGS) ../src/libhash.la -ldl
+hash_test_LDADD   =  $(LDFLAGS) ../src/libutil.la ../../common/src/libcommon.la
 INCLUDES = -I${CUTEST_HOME}/include -I../../../include

Modified: webservices/axis2/trunk/c/modules/util/test/hash_test.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/util/test/hash_test.c?rev=320635&r1=320634&r2=320635&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/util/test/hash_test.c (original)
+++ webservices/axis2/trunk/c/modules/util/test/hash_test.c Wed Oct 12 20:46:57 2005
@@ -80,4 +80,6 @@
 
     printf ("\n demo get %s \n",
             ((a *) axis2_hash_get (ht, key4, AXIS2_HASH_KEY_STRING))->value);
+
+    return 0;
 }