aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/configure.ac
diff options
context:
space:
mode:
authorYao Qi <yao@codesourcery.com>2014-11-25 16:07:45 +0800
committerYao Qi <yao@codesourcery.com>2014-12-01 14:13:17 +0800
commit9e8cd6df3ca295986b2c295b6cfa5ceadd410bb4 (patch)
tree8d3fb435f98e72c87d72b63406f48c1207620c4e /gdb/testsuite/configure.ac
parent3fcd9bb03b8e7d2046442d3990b3fc2fdf960a3e (diff)
downloadgdb-9e8cd6df3ca295986b2c295b6cfa5ceadd410bb4.zip
gdb-9e8cd6df3ca295986b2c295b6cfa5ceadd410bb4.tar.gz
gdb-9e8cd6df3ca295986b2c295b6cfa5ceadd410bb4.tar.bz2
Don't enable gdbtk in testsuite
When I skim configure.ac and Makefile.in in gdb/testsuite, I happen to see that directory gdb.gdbtk is added to subdirs, however it doesn't exist. gdb/testsuite/gdb.gdbtk was removed by the patch below, [rfa] git repo fixup: delete gdb/testsuite/gdb.gdbtk http://thread.gmane.org/gmane.comp.gdb.patches/61489 and we should cleanup configure.ac accordingly. gdb/testsuite: 2014-12-01 Yao Qi <yao@codesourcery.com> * configure.ac: Remove AC_ARG_ENABLE for gdbtk. Don't invoke AC_CONFIG_SUBDIRS(gdb.gdbtk). * configure: Re-generated.
Diffstat (limited to 'gdb/testsuite/configure.ac')
-rw-r--r--gdb/testsuite/configure.ac19
1 files changed, 0 insertions, 19 deletions
diff --git a/gdb/testsuite/configure.ac b/gdb/testsuite/configure.ac
index 9dccc9f..a1efc31 100644
--- a/gdb/testsuite/configure.ac
+++ b/gdb/testsuite/configure.ac
@@ -36,25 +36,6 @@ esac
AM_CONDITIONAL(GMAKE, test "$MAKE_IS_GNU" = yes)
AC_PROG_MAKE_SET
-# Enable gdbtk.
-AC_ARG_ENABLE(gdbtk,
-[ --enable-gtk enable gdbtk graphical user interface (GUI)],,
- [if test -d $srcdir/../gdbtk && test -d $srcdir/gdb.gdbtk; then
- enable_gdbtk=yes
- else
- enable_gdbtk=no
- fi])
-# We unconditionally disable gdbtk tests on selected platforms.
-case $host_os in
- go32* | windows*)
- enable_gdbtk=no ;;
-esac
-
-# Add gdbtk tests when appropriate.
-if test $enable_gdbtk = yes; then
- AC_CONFIG_SUBDIRS(gdb.gdbtk)
-fi
-
# Enable shared libraries.
AC_ARG_ENABLE(shared,
[ --enable-shared build shared libraries [deault=yes]],,