Bug #348 ยป configure-with-regard-for-quality.patch
| configure | ||
|---|---|---|
|
# Check whether --with-regard-for-quality was given.
|
||
|
if test "${with_regard_for_quality+set}" = set; then :
|
||
|
withval=$with_regard_for_quality; if test x"$withval" != no; then :
|
||
|
withval=$with_regard_for_quality; if test x"$withval" != xno; then :
|
||
|
with_regard_for_quality=yes
|
||
|
fi
|
||
|
else
|
||
| configure.ac | ||
|---|---|---|
|
AC_ARG_WITH([regard-for-quality],
|
||
|
[AS_HELP_STRING([--without-regard-for-quality],
|
||
|
[ignore results of checks for known defects @<:@default: abort on error@:>@])],
|
||
|
[AS_IF([test x"$withval" != no],
|
||
|
[AS_IF([test x"$withval" != xno],
|
||
|
[with_regard_for_quality=yes])],[with_regard_for_quality=yes])
|
||
|
AS_IF([test $enable_MPI = yes],
|
||
|
[ACX_MPIRUN(,[saved_MPI_LAUNCH=$MPI_LAUNCH],
|
||