[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.0.4-125-gbdd8c14

mysql vizuser noreply at mpich.org
Fri May 3 18:29:34 CDT 2013


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "MPICH primary repository".

The branch, master has been updated
       via  bdd8c149c5077bd0d7abc2a167eaf2670a03fec4 (commit)
      from  f7b6f82ac880ff0bd8f418e2c97c381947d3aa4a (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.mpich.org/mpich.git/commitdiff/bdd8c149c5077bd0d7abc2a167eaf2670a03fec4

commit bdd8c149c5077bd0d7abc2a167eaf2670a03fec4
Author: Pavan Balaji <balaji at mcs.anl.gov>
Date:   Fri May 3 16:56:22 2013 -0500

    Bug-fix in the weak symbols check for ROMIO.
    
    No reviewer.

diff --git a/src/mpi/romio/configure.ac b/src/mpi/romio/configure.ac
index 68af036..0670739 100644
--- a/src/mpi/romio/configure.ac
+++ b/src/mpi/romio/configure.ac
@@ -893,11 +893,11 @@ if test $FROM_MPICH = yes ; then
 fi   
 
 # Check to see if weak symbols work correctly
-if test $enable_weak_symbols = yes ; then
+if test "$enable_weak_symbols" = "yes" ; then
     # Turn off weak symbols if they aren't available
     PAC_PROG_C_WEAK_SYMBOLS(,enable_weak_symbols=no)
 fi
-if test $enable_weak_symbols = "yes" ; then
+if test "$enable_weak_symbols" = "yes" ; then
     AC_DEFINE(USE_WEAK_SYMBOLS,1,[Define if weak symbols should be used])
     # Check for the ability to support multiple weak symbols
     if test "$pac_cv_prog_c_weak_symbols" = "pragma weak" ; then
@@ -905,7 +905,7 @@ if test $enable_weak_symbols = "yes" ; then
     fi
 fi
 
-if test "$enable_weak_symbols" = 1 ; then
+if test "$enable_weak_symbols" = "yes" ; then
     AC_DEFINE(HAVE_WEAK_SYMBOLS,1,[Define if weak symbols available])
     HAVE_WEAK_SYMBOLS=1
 else

-----------------------------------------------------------------------

Summary of changes:
 src/mpi/romio/configure.ac |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
MPICH primary repository


More information about the commits mailing list