Author: tkreuzer Date: Sat Feb 2 22:08:53 2013 New Revision: 58274
URL: http://svn.reactos.org/svn/reactos?rev=58274&view=rev Log: [MKHIVE] 2nd try to fix *nix build
Modified: trunk/reactos/tools/mkhive/reginf.c
Modified: trunk/reactos/tools/mkhive/reginf.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/tools/mkhive/reginf.c?rev=5... ============================================================================== --- trunk/reactos/tools/mkhive/reginf.c [iso-8859-1] (original) +++ trunk/reactos/tools/mkhive/reginf.c [iso-8859-1] Sat Feb 2 22:08:53 2013 @@ -47,9 +47,9 @@ #define FLG_ADDREG_TYPE_NONE (0x00020000 | FLG_ADDREG_BINVALUETYPE) #define FLG_ADDREG_TYPE_MASK (0xFFFF0000 | FLG_ADDREG_BINVALUETYPE)
-#ifdef _M_IX86 +#if defined(_M_IX86) || defined(__i386__) static const WCHAR Architecture[] = {'x','8','6',0}; -#elif defined(_M_AMD64) +#elif defined(_M_AMD64) || defined(__x86_64__) static const WCHAR Architecture[] = {'a','m','d','6','4'0}; #elif defined(_M_IA64) static const WCHAR Architecture[] = {'i','a','6','4',0};