Commit e643dc23 by Richard Guenther Committed by Richard Biener

configure.ac (--enable-stage1-checking): If neither --enable-checking nor…

configure.ac (--enable-stage1-checking): If neither --enable-checking nor --disable-checking is provided also turn on...

2007-09-05  Richard Guenther  <rguenther@suse.de>

	* configure.ac (--enable-stage1-checking): If neither --enable-checking
	nor --disable-checking is provided also turn on yes and types
	checking for stage1.
	* configure: Re-generate.

From-SVN: r128131
parent a99288e5
2007-09-05 Richard Guenther <rguenther@suse.de>
* configure.ac (--enable-stage1-checking): If neither --enable-checking
nor --disable-checking is provided also turn on yes and types
checking for stage1.
* configure: Re-generate.
2007-08-30 Krister Walfridsson <cato@df.lth.se>
* MAINTAINERS (OS Port Maintainers): Add myself as NetBSD maintainer.
......
......@@ -11992,10 +11992,10 @@ if test "${enable_stage1_checking+set}" = set; then
enableval="$enable_stage1_checking"
stage1_checking=--enable-checking=${enable_stage1_checking}
else
if test "x$enable_checking" = xno; then
if test "x$enable_checking" = xno || test "x$enable_checking" = x; then
stage1_checking=--enable-checking=yes,types
else
stage1_checking=--enable-checking=types${enable_checking+,}$enable_checking
stage1_checking=--enable-checking=$enable_checking,types
fi
fi;
......
......@@ -2613,10 +2613,10 @@ AC_ARG_ENABLE(stage1-checking,
[ --enable-stage1-checking@<:@=all@:>@ choose additional checking for stage1
of the compiler],
[stage1_checking=--enable-checking=${enable_stage1_checking}],
[if test "x$enable_checking" = xno; then
[if test "x$enable_checking" = xno || test "x$enable_checking" = x; then
stage1_checking=--enable-checking=yes,types
else
stage1_checking=--enable-checking=types${enable_checking+,}$enable_checking
stage1_checking=--enable-checking=$enable_checking,types
fi])
AC_SUBST(stage1_checking)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment