Commit d2640b91 by Phil Edwards Committed by Phil Edwards

configure.ac: Alphabetize --enable-checking list, add missing valgrind entry.

2004-07-11  Phil Edwards  <phil@codesourcery.com>

	* configure.ac:  Alphabetize --enable-checking list, add
	missing valgrind entry.
	* configure:  Regenerate.

From-SVN: r84495
parent d817041f
2004-07-11 Phil Edwards <phil@codesourcery.com> 2004-07-11 Phil Edwards <phil@codesourcery.com>
* configure.ac: Alphabetize --enable-checking list, add
missing valgrind entry.
* configure: Regenerate.
2004-07-11 Phil Edwards <phil@codesourcery.com>
* doc/install.texi (Testing): Fix syntax in "make check" example. * doc/install.texi (Testing): Fix syntax in "make check" example.
2004-07-10 James E Wilson <wilson@specifixinc.com> 2004-07-10 James E Wilson <wilson@specifixinc.com>
......
...@@ -384,8 +384,8 @@ AC_ARG_ENABLE(checking, ...@@ -384,8 +384,8 @@ AC_ARG_ENABLE(checking,
[ --enable-checking[=LIST] [ --enable-checking[=LIST]
enable expensive run-time checks. With LIST, enable expensive run-time checks. With LIST,
enable only specific categories of checks. enable only specific categories of checks.
Categories are: misc,tree,rtl,rtlflag,gc,gcac,fold; Categories are: fold,gc,gcac,misc,rtlflag,rtl,
default is misc,tree,gc,rtlflag], tree,valgrind; default is gc,misc,rtlflag,tree],
[ac_checking= [ac_checking=
ac_tree_checking= ac_tree_checking=
ac_rtl_checking= ac_rtl_checking=
...@@ -403,13 +403,13 @@ no) ;; ...@@ -403,13 +403,13 @@ no) ;;
for check for check
do do
case $check in case $check in
fold) ac_fold_checking=1 ;;
gc) ac_gc_checking=1 ;;
gcac) ac_gc_always_collect=1 ;;
misc) ac_checking=1 ;; misc) ac_checking=1 ;;
tree) ac_tree_checking=1 ;;
rtlflag) ac_rtlflag_checking=1 ;; rtlflag) ac_rtlflag_checking=1 ;;
rtl) ac_rtl_checking=1 ;; rtl) ac_rtl_checking=1 ;;
gc) ac_gc_checking=1 ;; tree) ac_tree_checking=1 ;;
gcac) ac_gc_always_collect=1 ;;
fold) ac_fold_checking=1 ;;
valgrind) ac_checking_valgrind=1 ;; valgrind) ac_checking_valgrind=1 ;;
*) AC_MSG_ERROR(unknown check category $check) ;; *) AC_MSG_ERROR(unknown check category $check) ;;
esac esac
......
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