Fix gcc architecture checks added to wx/msw/genrcdefs.h.
Use "#if defined" instead of "#ifdef" for the checks involving "||". git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@75032 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -19,7 +19,7 @@ EMIT(#define wxUSE_RC_MANIFEST 1)
|
|||||||
EMIT(#define wxUSE_RC_MANIFEST 1)
|
EMIT(#define wxUSE_RC_MANIFEST 1)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef _M_AMD64 || defined __x86_64__
|
#if defined _M_AMD64 || defined __x86_64__
|
||||||
EMIT(#define WX_CPU_AMD64)
|
EMIT(#define WX_CPU_AMD64)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@@ -27,7 +27,7 @@ EMIT(#define WX_CPU_AMD64)
|
|||||||
EMIT(#define WX_CPU_ARM)
|
EMIT(#define WX_CPU_ARM)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef _M_IA64 || defined __ia64__
|
#if defined _M_IA64 || defined __ia64__
|
||||||
EMIT(#define WX_CPU_IA64)
|
EMIT(#define WX_CPU_IA64)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user