diff options
author | DJ Delorie <dj@delorie.com> | 2002-07-03 23:35:31 +0000 |
---|---|---|
committer | DJ Delorie <dj@delorie.com> | 2002-07-03 23:35:31 +0000 |
commit | 132bdf136d26f8cb1ee179103cf78078c316df86 (patch) | |
tree | 069a4cffb07691fbd8591b779b46ae1ff30d8e20 /configure.in | |
parent | f936db1fd71fbcb562b7c904a628b5df90d2e481 (diff) | |
download | gdb-132bdf136d26f8cb1ee179103cf78078c316df86.tar.gz |
* configure.in: Make --without-x work.
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 |