[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.0.2-73-g115fc21
mysql vizuser
noreply at mpich.org
Wed Mar 6 09:27:46 CST 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 115fc21aff37499f35ebde653833103c0f5a963a (commit)
via 429bc280abd3d8c32831c8b2e7b1c5c758cd4afb (commit)
from 0feb67a6f283f922f008717d138162c2059dad05 (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/115fc21aff37499f35ebde653833103c0f5a963a
commit 115fc21aff37499f35ebde653833103c0f5a963a
Author: Dave Goodell <goodell at mcs.anl.gov>
Date: Wed Mar 6 09:26:45 2013 -0600
fix `long double _Complex` logic from [a9305613]
No reviewer.
diff --git a/configure.ac b/configure.ac
index 186246e..4a80c12 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2949,7 +2949,7 @@ AC_CHECK_SIZEOF([double _Complex],0,[
#include <complex.h>
#endif
])
-AS_IF(["X$pac_cv_have_long_double" = "Xyes"],[
+AS_IF([test "X$pac_cv_have_long_double" = "Xyes"],[
AC_CHECK_SIZEOF([long double _Complex],0,[
#ifdef HAVE_COMPLEX_H
#include <complex.h>
@@ -2961,7 +2961,7 @@ AS_IF(["X$pac_cv_have_long_double" = "Xyes"],[
# HAVE_typename macro is useful for consistency
AC_CHECK_TYPES([_Bool, float _Complex, double _Complex])
-AS_IF(["X$pac_cv_have_long_double" = "Xyes"],[
+AS_IF([test "X$pac_cv_have_long_double" = "Xyes"],[
AC_CHECK_TYPES([long double _Complex])
])
http://git.mpich.org/mpich.git/commitdiff/429bc280abd3d8c32831c8b2e7b1c5c758cd4afb
commit 429bc280abd3d8c32831c8b2e7b1c5c758cd4afb
Author: Dave Goodell <goodell at mcs.anl.gov>
Date: Wed Mar 6 09:10:28 2013 -0600
tests: gate `long double _Complex`
We should not support `long double _Complex` if we don't support `long
double`.
No reviewer.
diff --git a/test/mpi/configure.ac b/test/mpi/configure.ac
index 0106e6c..09b0427 100644
--- a/test/mpi/configure.ac
+++ b/test/mpi/configure.ac
@@ -541,8 +541,9 @@ AC_TYPE_UINT64_T
AC_CHECK_TYPES([_Bool, float _Complex, double _Complex, long double _Complex])
# Only run the long double complex tests if that type is available
-if test "$enable_long_double_complex" != "no" -a \
- "x$ac_cv_type_long_double__Complex" = "xyes" ; then
+if test "x$enable_long_double" = "xyes" && \
+ test "x$enable_long_double_complex" = "xyes" && \
+ test "x$ac_cv_type_long_double__Complex" = "xyes" ; then
AC_DEFINE(USE_LONG_DOUBLE_COMPLEX,1,[Define if tests with long double complex should be included])
fi
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 4 ++--
test/mpi/configure.ac | 5 +++--
2 files changed, 5 insertions(+), 4 deletions(-)
hooks/post-receive
--
MPICH primary repository
More information about the commits
mailing list