[mapguide-commits] r6550 - trunk/MgDev/Oem/ACE/ACE_wrappers/ace

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Fri Mar 16 01:52:32 EDT 2012


Author: wuma
Date: 2012-03-15 22:52:32 -0700 (Thu, 15 Mar 2012)
New Revision: 6550

Modified:
   trunk/MgDev/Oem/ACE/ACE_wrappers/ace/config-linux.h
   trunk/MgDev/Oem/ACE/ACE_wrappers/ace/config-win32.h
Log:
For ticket: http://trac.osgeo.org/mapguide/ticket/1975

With RFC118: Support IPv6 implemented, MgServer? cannot start on a windows box without IPv6 installed. Windows XP and Windows 2003 don't have IPv6 installed by default, then MgServer? cannot start on above platforms.

The reason is: along with ACE_HAS_IPV6, below pre-directive has to be also defined to make ACE work on a platform without IPv6 installed: ACE_USES_IPV4_IPV6_MIGRATION


Modified: trunk/MgDev/Oem/ACE/ACE_wrappers/ace/config-linux.h
===================================================================
--- trunk/MgDev/Oem/ACE/ACE_wrappers/ace/config-linux.h	2012-03-15 12:22:05 UTC (rev 6549)
+++ trunk/MgDev/Oem/ACE/ACE_wrappers/ace/config-linux.h	2012-03-16 05:52:32 UTC (rev 6550)
@@ -9,6 +9,7 @@
 #define ACE_CONFIG_LINUX_H
 #include /**/ "ace/pre.h"
 #define ACE_HAS_IPV6
+#define ACE_USES_IPV4_IPV6_MIGRATION
 
 #define ACE_PLATFORM_CONFIG config-linux.h
 

Modified: trunk/MgDev/Oem/ACE/ACE_wrappers/ace/config-win32.h
===================================================================
--- trunk/MgDev/Oem/ACE/ACE_wrappers/ace/config-win32.h	2012-03-15 12:22:05 UTC (rev 6549)
+++ trunk/MgDev/Oem/ACE/ACE_wrappers/ace/config-win32.h	2012-03-16 05:52:32 UTC (rev 6550)
@@ -19,6 +19,7 @@
 #define ACE_CONFIG_WIN32_H
 #include /**/ "ace/pre.h"
 #define ACE_HAS_IPV6
+#define ACE_USES_IPV4_IPV6_MIGRATION
 
 // NOTE: Please do not add anything besides #include's here.  Put other stuff
 //       (definitions, etc.) in the included headers



More information about the mapguide-commits mailing list