diff options
author | neroden <neroden@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-07-03 22:50:35 +0000 |
---|---|---|
committer | neroden <neroden@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-07-03 22:50:35 +0000 |
commit | f6c0123dbfb044ca0672264fed0229670f16479a (patch) | |
tree | 67c42fc7cb1600c704a3b9d9af645c4dbe73da3a /configure.in | |
parent | 72bbf3f4de70e90c6447ba2807e328d24cff650c (diff) | |
download | gcc-f6c0123dbfb044ca0672264fed0229670f16479a.tar.gz |
* configure.in: Make --without-x work.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55226 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.in b/configure.in index d4eec7de9b6..23617309c59 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 |