aboutsummaryrefslogtreecommitdiff
path: root/gcc/configure.ac
diff options
context:
space:
mode:
authorBryce McKinlay <mckinlay@redhat.com>2004-05-27 19:47:36 +0000
committerBryce McKinlay <bryce@gcc.gnu.org>2004-05-27 20:47:36 +0100
commit13f05fd0df4108bbc4de0c6f40d949c975122ea5 (patch)
tree78f1ccfb5ab93f69078355af53ee095ae832bea8 /gcc/configure.ac
parent7c50e202bc44878533a9eec75fed6c1744e0a281 (diff)
downloadgcc-13f05fd0df4108bbc4de0c6f40d949c975122ea5.zip
gcc-13f05fd0df4108bbc4de0c6f40d949c975122ea5.tar.gz
gcc-13f05fd0df4108bbc4de0c6f40d949c975122ea5.tar.bz2
configure.ac: Remove --enable-tree-browser option.
* configure.ac: Remove --enable-tree-browser option. Define TREEBROWSER when ac_tree_checking is defined. * configure: Rebuilt. From-SVN: r82338
Diffstat (limited to 'gcc/configure.ac')
-rw-r--r--gcc/configure.ac14
1 files changed, 5 insertions, 9 deletions
diff --git a/gcc/configure.ac b/gcc/configure.ac
index b219c14..71f6f0d 100644
--- a/gcc/configure.ac
+++ b/gcc/configure.ac
@@ -425,8 +425,12 @@ if test x$ac_tree_checking != x ; then
AC_DEFINE(ENABLE_TREE_CHECKING, 1,
[Define if you want all operations on trees (the basic data
structure of the front ends) to be checked for dynamic type safety
- at runtime. This is moderately expensive.])
+ at runtime. This is moderately expensive. The tree browser debugging
+ routines will also be enabled by this option.
+ ])
+ TREEBROWSER=tree-browser.o
fi
+AC_SUBST(TREEBROWSER)
if test x$ac_rtl_checking != x ; then
AC_DEFINE(ENABLE_RTL_CHECKING, 1,
[Define if you want all operations on RTL (the basic data structure
@@ -543,14 +547,6 @@ if test x$enable_gather_detailed_mem_stats = xyes ; then
[Define to enable detailed memory allocation stats gathering.])
fi
-AC_ARG_ENABLE(tree-browser,
-[ --enable-tree-browser enable the tree browsing routines for debugging], [],
-[enable_tree_browser=no])
-if test x$enable_tree_browser = xyes ; then
- TREEBROWSER=tree-browser.o
-fi
-AC_SUBST(TREEBROWSER)
-
# -------------------------------
# Miscenalleous configure options
# -------------------------------