diff options
author | DJ Delorie <dj@redhat.com> | 2002-07-03 23:35:31 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2002-07-03 23:35:31 +0000 |
commit | 1f52cb5d3e650267638af05eea6ae2e9359a6e19 (patch) | |
tree | fad71cfa44cf7fec92b017ca3e0321a9124af0cc | |
parent | 073aa6812a147a738540b28a44e2bbf2ddcf83df (diff) | |
download | cygnal-1f52cb5d3e650267638af05eea6ae2e9359a6e19.tar.gz cygnal-1f52cb5d3e650267638af05eea6ae2e9359a6e19.tar.bz2 cygnal-1f52cb5d3e650267638af05eea6ae2e9359a6e19.zip |
* configure.in: Make --without-x work.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 6 |
2 files changed, 9 insertions, 1 deletions
@@ -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 diff --git a/configure.in b/configure.in index d4eec7de9..23617309c 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 |