|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r53383 - trunk/tools/jam/src
From: ghost_at_[hidden]
Date: 2009-05-29 04:47:03
Author: vladimir_prus
Date: 2009-05-29 04:47:03 EDT (Fri, 29 May 2009)
New Revision: 53383
URL: http://svn.boost.org/trac/boost/changeset/53383
Log:
Catch more macros.
Patch from John W. Bito
Text files modified:
trunk/tools/jam/src/jam.h | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
Modified: trunk/tools/jam/src/jam.h
==============================================================================
--- trunk/tools/jam/src/jam.h (original)
+++ trunk/tools/jam/src/jam.h 2009-05-29 04:47:03 EDT (Fri, 29 May 2009)
@@ -453,6 +453,7 @@
#if defined( _i386_ ) || \
defined( __i386__ ) || \
+ defined( __i386 ) || \
defined( _M_IX86 )
#define OSPLAT "OSPLAT=X86"
#endif
@@ -470,7 +471,8 @@
#endif
-#ifdef __sparc__
+#if defined( __sparc__ ) || \
+ defined( __sparc )
#define OSPLAT "OSPLAT=SPARC"
#endif
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk