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 se...@apache.org on 2008/03/08 09:42:39 UTC

svn commit: r634907 - /webservices/axis2/trunk/c/util/include/platforms/unix/axutil_unix.h

Author: senaka
Date: Sat Mar  8 00:42:37 2008
New Revision: 634907

URL: http://svn.apache.org/viewvc?rev=634907&view=rev
Log:
Fixing bugs when using ltdl instead of dl

Modified:
    webservices/axis2/trunk/c/util/include/platforms/unix/axutil_unix.h

Modified: webservices/axis2/trunk/c/util/include/platforms/unix/axutil_unix.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/include/platforms/unix/axutil_unix.h?rev=634907&r1=634906&r2=634907&view=diff
==============================================================================
--- webservices/axis2/trunk/c/util/include/platforms/unix/axutil_unix.h (original)
+++ webservices/axis2/trunk/c/util/include/platforms/unix/axutil_unix.h Sat Mar  8 00:42:37 2008
@@ -63,13 +63,13 @@
      ****************************************************************/
 #ifdef USE_LTDL
 #include <ltdl.h>
-#define AXIS2_DLHandler lt_dlhandle
+#define AXIS2_DLHANDLER lt_dlhandle
 
 #define AXIS2_PLATFORM_LOADLIBINIT       lt_dlinit
 #define AXIS2_PLATFORM_LOADLIB(_lib)     lt_dlopen(_lib)
 #define AXIS2_PLATFORM_UNLOADLIB         lt_dlclose
 #define AXIS2_PLATFORM_GETPROCADDR       lt_dlsym
-#define AXIS2_PLATFORM_LOADLIBEXIT       lt_dlexit
+#define AXIS2_PLATFORM_LOADLIBEXIT()     lt_dlexit();
 #define AXIS2_PLATFORM_LOADLIB_ERROR     lt_dlerror()
 #else
 #include <dlfcn.h>



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org