From 7cc0d6ae9dc485d954edce84e28f665ac6151bb9 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Fri, 21 Jan 2000 23:32:36 +0000 Subject: Fix tab-complete so it works with old versions of readline that don't have the rl_completion_append_character variable. The tab completion behavior doesn't seem to be quite perfect in that situation, but it's better than failing to build at all... --- src/include/config.h.in | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/include') diff --git a/src/include/config.h.in b/src/include/config.h.in index 472bb68bf6..ed8356c293 100644 --- a/src/include/config.h.in +++ b/src/include/config.h.in @@ -454,6 +454,9 @@ extern void srandom(unsigned int seed); /* Set to 1 if you have libhistory.a */ #undef HAVE_LIBHISTORY +/* Set to 1 if your libreadline defines rl_completion_append_character */ +#undef HAVE_RL_COMPLETION_APPEND_CHARACTER + /* Set to 1 if you have getopt_long() (GNU long options) */ #undef HAVE_GETOPT_LONG -- cgit v1.2.3