Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r49033 - trunk/libs/mpi/build
From: ghost_at_[hidden]
Date: 2008-09-29 16:28:55


Author: vladimir_prus
Date: 2008-09-29 16:28:55 EDT (Mon, 29 Sep 2008)
New Revision: 49033
URL: http://svn.boost.org/trac/boost/changeset/49033

Log:
Dont emit message about MPI not configured if not building Boost.MPI.

Text files modified:
   trunk/libs/mpi/build/Jamfile.v2 | 10 ++++++----
   1 files changed, 6 insertions(+), 4 deletions(-)

Modified: trunk/libs/mpi/build/Jamfile.v2
==============================================================================
--- trunk/libs/mpi/build/Jamfile.v2 (original)
+++ trunk/libs/mpi/build/Jamfile.v2 2008-09-29 16:28:55 EDT (Mon, 29 Sep 2008)
@@ -104,10 +104,12 @@
 }
 else if ! ( --without-mpi in [ modules.peek : ARGV ] )
 {
- ECHO "warning: skipping optional Message Passing Interface (MPI) library." ;
- ECHO "note: to enable MPI support, add \"using mpi ;\" to user-config.jam." ;
- ECHO "note: to suppress this message, pass \"--without-mpi\" to bjam." ;
- ECHO "note: otherwise, you can safely ignore this message." ;
+ message boost_mpi
+ : "warning: skipping optional Message Passing Interface (MPI) library."
+ : "note: to enable MPI support, add \"using mpi ;\" to user-config.jam."
+ : "note: to suppress this message, pass \"--without-mpi\" to bjam."
+ : "note: otherwise, you can safely ignore this message."
+ ;
 }
 
 boost-install $(libraries) ;
\ No newline at end of file


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