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 sh...@apache.org on 2009/12/16 04:35:57 UTC

svn commit: r891110 - in /webservices/axis2/trunk/c: guththila/include/guththila_defines.h util/include/axutil_utils_defines.h util/include/platforms/axutil_platform_auto_sense.h

Author: shankar
Date: Wed Dec 16 03:35:57 2009
New Revision: 891110

URL: http://svn.apache.org/viewvc?rev=891110&view=rev
Log:
Fixing issue AXIS2C-1325

Modified:
    webservices/axis2/trunk/c/guththila/include/guththila_defines.h
    webservices/axis2/trunk/c/util/include/axutil_utils_defines.h
    webservices/axis2/trunk/c/util/include/platforms/axutil_platform_auto_sense.h

Modified: webservices/axis2/trunk/c/guththila/include/guththila_defines.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/guththila/include/guththila_defines.h?rev=891110&r1=891109&r2=891110&view=diff
==============================================================================
--- webservices/axis2/trunk/c/guththila/include/guththila_defines.h (original)
+++ webservices/axis2/trunk/c/guththila/include/guththila_defines.h Wed Dec 16 03:35:57 2009
@@ -18,7 +18,7 @@
 #ifndef GUTHTHILA_DEFINES_H
 #define GUTHTHILA_DEFINES_H
 
-#if defined(WIN32)
+#if defined(_WIN32)
 #define	GUTHTHILA_EXPORT  __declspec(dllexport)
 #else
 #define GUTHTHILA_EXPORT

Modified: webservices/axis2/trunk/c/util/include/axutil_utils_defines.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/include/axutil_utils_defines.h?rev=891110&r1=891109&r2=891110&view=diff
==============================================================================
--- webservices/axis2/trunk/c/util/include/axutil_utils_defines.h (original)
+++ webservices/axis2/trunk/c/util/include/axutil_utils_defines.h Wed Dec 16 03:35:57 2009
@@ -21,7 +21,7 @@
 
 #include <stddef.h>
 
-#if !defined(WIN32)
+#if !defined(_WIN32)
 #include <stdint.h> 
 #endif
 
@@ -30,7 +30,7 @@
 {
 #endif
 
-#if defined(WIN32) && !defined(AXIS2_SKIP_INT_TYPEDEFS)
+#if defined(_WIN32) && !defined(AXIS2_SKIP_INT_TYPEDEFS)
     /**
      * ANSI Type definitions for Windows
      */
@@ -49,7 +49,7 @@
  * for printf family of functions
  */
 
-#if defined(WIN32)
+#if defined(_WIN32)
 #define AXIS2_PRINTF_INT64_FORMAT_SPECIFIER "%I64d"
 #define AXIS2_PRINTF_UINT64_FORMAT_SPECIFIER "%I64u"
 #define AXIS2_PRINTF_INT32_FORMAT_SPECIFIER "%I32d"
@@ -100,7 +100,7 @@
     /**
       *   Exporting
       */
-#if defined(WIN32) && !defined(AXIS2_DECLARE_STATIC)
+#if defined(_WIN32) && !defined(AXIS2_DECLARE_STATIC)
 #define AXIS2_EXPORT __declspec(dllexport)
 #else
 #define AXIS2_EXPORT
@@ -109,7 +109,7 @@
     /**
       *   Importing
       */
-#if defined(WIN32)
+#if defined(_WIN32)
 #define AXIS2_IMPORT __declspec(dllimport)
 #else
 #define AXIS2_IMPORT
@@ -169,7 +169,7 @@
 
 #endif                          /* def DOXYGEN */
 
-#if !defined(WIN32)
+#if !defined(_WIN32)
 
     /**
      * Axis2 Core functions are declared with AXIS2_EXTERN  AXIS2_CALL

Modified: webservices/axis2/trunk/c/util/include/platforms/axutil_platform_auto_sense.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/include/platforms/axutil_platform_auto_sense.h?rev=891110&r1=891109&r2=891110&view=diff
==============================================================================
--- webservices/axis2/trunk/c/util/include/platforms/axutil_platform_auto_sense.h (original)
+++ webservices/axis2/trunk/c/util/include/platforms/axutil_platform_auto_sense.h Wed Dec 16 03:35:57 2009
@@ -36,7 +36,7 @@
      * @{
      */
 
-#if defined( WIN32 )
+#if defined(_WIN32 )
 #include "windows/axutil_windows.h"
 #include "windows/axutil_dir_windows.h"
 #include "windows/axutil_uuid_gen_windows.h"