* configure.in: Make --without-x work.
authorDJ Delorie <dj@redhat.com>
Wed, 3 Jul 2002 23:35:31 +0000 (23:35 +0000)
committerDJ Delorie <dj@redhat.com>
Wed, 3 Jul 2002 23:35:31 +0000 (23:35 +0000)
ChangeLog
configure.in

index 663ad8d..1d92438 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2002-07-03  Nathanael Nerode  <neroden@gcc.gnu.org>
+
+       * configure.in: Make --without-x work.
+
 2002-07-03  Nick Clifton  <nickc@cambridge.redhat.com>
 
        * contrib: New directory.  Created to contain a copy of the
index d4eec7d..2361730 100644 (file)
@@ -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