Ticket #2971: jam_h.patch

File jam_h.patch, 511 bytes (added by John <jwbito@…>, 13 years ago)
  • jam.h

    ---
     jam.h |    4 +++-
     1 files changed, 3 insertions(+), 1 deletions(-)
    
    diff --git a/jam.h b/jam.h
    index 38680c0..2d65a16 100644
    a b  
    452452
    453453#if defined( _i386_   ) || \
    454454    defined( __i386__ ) || \
     455    defined( __i386   ) || \
    455456    defined( _M_IX86  )
    456457    #define OSPLAT "OSPLAT=X86"
    457458#endif
     
    469470#endif
    470471
    471472
    472 #ifdef __sparc__
     473#if defined( __sparc__ ) || \
     474    defined( __sparc   )
    473475    #define OSPLAT "OSPLAT=SPARC"
    474476#endif
    475477