diff options
author | Tom Tromey <tromey@redhat.com> | 2010-11-23 14:39:16 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2010-11-23 14:39:16 +0000 |
commit | 39037522c862528df367aaa40015fdf9641b8d19 (patch) | |
tree | e38d7430c8e63632731bec1fec9685d3d013b2ce /gdb/configure | |
parent | 5ae98d2512a3d327aed9e66fc065e010e38379f9 (diff) | |
download | gdb-39037522c862528df367aaa40015fdf9641b8d19.zip gdb-39037522c862528df367aaa40015fdf9641b8d19.tar.gz gdb-39037522c862528df367aaa40015fdf9641b8d19.tar.bz2 |
gdb
* configure: Rebuild.
* configure.ac (READLINE_TEXI_INCFLAG): New subst.
gdb/doc
* gdb.texinfo (Top): Check SYSTEM_READLINE.
(Editing): Likewise.
(Command History): Likewise.
(TUI Keys): Likewise.
(Bug Reporting): Conditionally include rluser.texi and
inc-history.texinfo.
* Makefile.in (READLINE_TEXI_INCFLAG): New variable.
(GDB_DOC_SOURCE_INCLUDES): Add comment.
(GDBvn.texi): Set SYSTEM_READLINE when appropriate.
(gdb.dvi): Use READLINE_TEXI_INCFLAG.
(gdb.pdf): Likewise.
(gdb.info): Likewise.
(gdb/index.html): Likewise.
Diffstat (limited to 'gdb/configure')
-rwxr-xr-x | gdb/configure | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/configure b/gdb/configure index 714df50..2bc49d6 100755 --- a/gdb/configure +++ b/gdb/configure @@ -664,6 +664,7 @@ python_prog_path LTLIBEXPAT LIBEXPAT HAVE_LIBEXPAT +READLINE_TEXI_INCFLAG READLINE_CFLAGS READLINE_DEPS READLINE @@ -9739,6 +9740,7 @@ if test "$with_system_readline" = yes; then READLINE=-lreadline READLINE_DEPS= READLINE_CFLAGS= + READLINE_TEXI_INCFLAG= # readline-6.0 started to use the name `_rl_echoing_p'. # `$(READLINE_DIR)/' of bundled readline would not resolve in configure. @@ -9776,12 +9778,14 @@ else READLINE='$(READLINE_DIR)/libreadline.a' READLINE_DEPS='$(READLINE)' READLINE_CFLAGS='-I$(READLINE_SRC)/..' + READLINE_TEXI_INCFLAG='-I $(READLINE_DIR)' fi + # Check whether --with-expat was given. if test "${with_expat+set}" = set; then : withval=$with_expat; |