--- jam.h | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/jam.h b/jam.h index 38680c0..2d65a16 100644 --- a/jam.h +++ b/jam.h @@ -452,6 +452,7 @@ #if defined( _i386_ ) || \ defined( __i386__ ) || \ + defined( __i386 ) || \ defined( _M_IX86 ) #define OSPLAT "OSPLAT=X86" #endif @@ -469,7 +470,8 @@ #endif -#ifdef __sparc__ +#if defined( __sparc__ ) || \ + defined( __sparc ) #define OSPLAT "OSPLAT=SPARC" #endif --