aboutsummaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorNathanael Nerode <neroden@gcc.gnu.org>2002-07-03 22:50:35 +0000
committerNathanael Nerode <neroden@gcc.gnu.org>2002-07-03 22:50:35 +0000
commit423ce3eb95eae12db157b3c7bd23fe799fae217e (patch)
tree67c42fc7cb1600c704a3b9d9af645c4dbe73da3a /configure.in
parent16ad69a19dbd022a4a50118af9f71fad695adeaa (diff)
downloadgcc-423ce3eb95eae12db157b3c7bd23fe799fae217e.zip
gcc-423ce3eb95eae12db157b3c7bd23fe799fae217e.tar.gz
gcc-423ce3eb95eae12db157b3c7bd23fe799fae217e.tar.bz2
* configure.in: Make --without-x work.
From-SVN: r55226
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in6
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index d4eec7d..2361730 100644
--- a/configure.in
+++ b/configure.in
@@ -175,7 +175,11 @@ fi
case ${with_x} in
yes | "") ;; # the default value for this tree is that X11 is available
- no) skipdirs="${skipdirs} tk libgui" ;;
+ no)
+ skipdirs="${skipdirs} tk tix itcl libgui"
+ # We won't be able to build gdbtk without X.
+ enable_gdbtk=no
+ ;;
*) echo "*** bad value \"${with_x}\" for -with-x flag; ignored" 1>&2 ;;
esac