aboutsummaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorDJ Delorie <dj@redhat.com>2002-07-03 23:35:31 +0000
committerDJ Delorie <dj@redhat.com>2002-07-03 23:35:31 +0000
commitff0a3bf8241108b84d35feee538f05ca23fa4e75 (patch)
tree6165dd0dee2e9f1f3139b95bbce0a825634dbaf5 /configure.in
parent049ee0e44d23a32d5de40a7259b50e78ff13a450 (diff)
downloadgdb-ff0a3bf8241108b84d35feee538f05ca23fa4e75.zip
gdb-ff0a3bf8241108b84d35feee538f05ca23fa4e75.tar.gz
gdb-ff0a3bf8241108b84d35feee538f05ca23fa4e75.tar.bz2
* configure.in: Make --without-x work.
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