diff options
author | Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> | 2010-01-25 13:22:02 +0000 |
---|---|---|
committer | Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> | 2010-01-25 13:22:02 +0000 |
commit | 6bcc772dec145e131137cf8cbc3786f3c4d96003 (patch) | |
tree | 505e1d50b9754d34827de8516854b25bba5e6ba7 /gdb/configure.ac | |
parent | 1c1238a5e85604eb3e351c06973c61599072320f (diff) | |
download | gdb-6bcc772dec145e131137cf8cbc3786f3c4d96003.zip gdb-6bcc772dec145e131137cf8cbc3786f3c4d96003.tar.gz gdb-6bcc772dec145e131137cf8cbc3786f3c4d96003.tar.bz2 |
* configure.ac: Only use host_os part when disabling TUI on osf.
Use test to check variables, prefix strings with x.
* configure: Regenerate.
* solib-osf.c (osf_current_sos): Initialize tail.
Diffstat (limited to 'gdb/configure.ac')
-rw-r--r-- | gdb/configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/configure.ac b/gdb/configure.ac index a756a2d..8da6867 100644 --- a/gdb/configure.ac +++ b/gdb/configure.ac @@ -447,11 +447,11 @@ AM_ICONV # broken on alpha-osf. case $host_os in - alpha*-*-osf* ) - if "$enable_tui" = "yes"; then + osf* ) + if test x"$enable_tui" = xyes; then AC_MSG_ERROR([Building GDB with TUI mode is not supported on this host]) fi - if "$enable_tui" = "auto"; then + if test x"$enable_tui" = xauto; then enable_tui=no fi ;; |