Author: tkreuzer
Date: Sun Jun 26 22:26:42 2011
New Revision: 52477
URL:
http://svn.reactos.org/svn/reactos?rev=52477&view=rev
Log:
[WINE]
- demote an #error to a #pragma warning for amd64 MSVC builds
Modified:
trunk/reactos/include/reactos/wine/port.h
Modified: trunk/reactos/include/reactos/wine/port.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/reactos/wine/port.…
==============================================================================
--- trunk/reactos/include/reactos/wine/port.h [iso-8859-1] (original)
+++ trunk/reactos/include/reactos/wine/port.h [iso-8859-1] Sun Jun 26 22:26:42 2011
@@ -172,6 +172,8 @@
"\tnop\n" \
"\t.section \".text\",#alloc,#execinstr\n" ); } \
static void func(void)
+#elif defined(_M_AMD64)
+#pragma message("You must define the DECL_GLOBAL_CONSTRUCTOR macro for amd64")
#else
# error You must define the DECL_GLOBAL_CONSTRUCTOR macro for your platform
#endif