Author: sebor
Date: Sat Feb 25 13:01:46 2006
New Revision: 380994
URL: http://svn.apache.org/viewcvs?rev=380994&view=rev
Log:
2006-02-25 Martin Sebor <[EMAIL PROTECTED]>
* _defs.h (_M_IA64): Used instead of the generic MSVC _WIN64 macro
to distinguish between the IA64 SDK and ordinary WIN64 environments
such as EM64T.
Modified:
incubator/stdcxx/trunk/include/rw/_defs.h
Modified: incubator/stdcxx/trunk/include/rw/_defs.h
URL:
http://svn.apache.org/viewcvs/incubator/stdcxx/trunk/include/rw/_defs.h?rev=380994&r1=380993&r2=380994&view=diff
==============================================================================
--- incubator/stdcxx/trunk/include/rw/_defs.h (original)
+++ incubator/stdcxx/trunk/include/rw/_defs.h Sat Feb 25 13:01:46 2006
@@ -125,7 +125,8 @@
#endif // _WIN32
// provide default #definitions of ANSI C library headers
-#ifdef _WIN64
+#if defined (_M_IA64)
+ // IA64/Itanium SDK paths
# if !defined (_RWSTD_NO_ASSERT_H) && !defined (_RWSTD_ANSI_C_ASSERT_H)
# define _RWSTD_ANSI_C_ASSERT_H <../include/crt/assert.h>
# endif