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: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]