aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@gnu.org>2003-01-02 20:29:15 +0000
committerMark Kettenis <kettenis@gnu.org>2003-01-02 20:29:15 +0000
commitf5dbc56d4daff74e671c973363d933c73603d4a0 (patch)
tree8130f68128a9e804ba051c8ac9644d95e8e9b95d /gdb/configure.in
parent* configure.in: Move code that provides the --enable-gdbcli, (diff)
downloadbinutils-gdb-f5dbc56d4daff74e671c973363d933c73603d4a0.tar.gz
binutils-gdb-f5dbc56d4daff74e671c973363d933c73603d4a0.tar.bz2
binutils-gdb-f5dbc56d4daff74e671c973363d933c73603d4a0.zip
* configure.in: Remove UI_OUT configuration code.
* ada-lang.c: Update assuming UI_OUT is always true. * Makefile.in (UIOUT_CFLAGS): Remove. * configure: Regenerated. * TODO: Remove blurb about elimination of -DUI_OUT.
Diffstat (limited to 'gdb/configure.in')
-rw-r--r--gdb/configure.in23
1 files changed, 0 insertions, 23 deletions
diff --git a/gdb/configure.in b/gdb/configure.in
index 460be2fc25b..2d913dc3fa3 100644
--- a/gdb/configure.in
+++ b/gdb/configure.in
@@ -865,29 +865,6 @@ fi
dnl Handle optional features that can be enabled.
-# Configure UI_OUT by default (before 5.2 it can be disabled)
-# It must be configured if gdbmi is configured
-
-UIOUT_CFLAGS=
-AC_SUBST(UIOUT_CFLAGS)
-
-AC_ARG_WITH(uiout,
-[ --with-uiout Use new uiout functions instead of *printf's],
-[case "${withval}" in
- yes) want_uiout=true ;;
- no) if test $enable_gdbmi = yes; then
- AC_MSG_ERROR(uiout is needed for MI and cannot be disabled)
- else
- want_uiout=false
- fi ;;
- *) AC_MSG_ERROR(bad value ${withval} for GDB with-uiout option) ;;
-esac],
-[want_uiout=true])dnl
-
-if test $want_uiout = true; then
- UIOUT_CFLAGS="-DUI_OUT=1"
-fi
-
AC_ARG_ENABLE(netrom,
[ --enable-netrom Enable NetROM support],
[case "${enableval}" in