diff options
| author | Tom Lane | 2020-01-23 23:20:57 +0000 |
|---|---|---|
| committer | Tom Lane | 2020-01-23 23:20:57 +0000 |
| commit | c32704441d47cc1cbb36367a429814511edb6ffd (patch) | |
| tree | d2944f25fefa4dea8bf39b6d06586c1b243fdce5 /src/include | |
| parent | 9a3a75cb81d3b060b8e76001d04c78ab4ce0dcef (diff) | |
Add configure probe for rl_completion_suppress_quote.
I had supposed that all versions of Readline that have filename
quoting hooks also have the rl_completion_suppress_quote variable.
But it seems OpenBSD managed to find a version someplace that does
not, so we'll have to expend a separate configure probe for that.
(Light testing suggests that this version also lacks the bugs that
make it necessary to frob that variable. Hooray!)
Per buildfarm.
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/pg_config.h.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/include/pg_config.h.in b/src/include/pg_config.h.in index 983d94e3fe7..6f485f73cd1 100644 --- a/src/include/pg_config.h.in +++ b/src/include/pg_config.h.in @@ -485,6 +485,10 @@ /* Define to 1 if you have the `rl_completion_matches' function. */ #undef HAVE_RL_COMPLETION_MATCHES +/* Define to 1 if you have the global variable 'rl_completion_suppress_quote'. + */ +#undef HAVE_RL_COMPLETION_SUPPRESS_QUOTE + /* Define to 1 if you have the `rl_filename_completion_function' function. */ #undef HAVE_RL_FILENAME_COMPLETION_FUNCTION |
