diff options
| author | Tom Lane | 2021-12-02 18:06:27 +0000 |
|---|---|---|
| committer | Tom Lane | 2021-12-02 18:06:27 +0000 |
| commit | a7da41981021575e2359683d994eec6c9d246321 (patch) | |
| tree | fcc3b7bc23f87bb62164ee62b21d740687cd74d2 /src/include | |
| parent | a22d6a2cb62c4fc6d7c4b077d8014fd4ffaec426 (diff) | |
Add configure probe for rl_variable_bind().
Some exceedingly ancient readline libraries lack this function, causing
commit 3d858af07 to fail. Per buildfarm (via Michael Paquier).
Discussion: https://postgr.es/m/E1msTLm-0007Cm-Ri@gemulon.postgresql.org
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/pg_config.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/pg_config.h.in b/src/include/pg_config.h.in index d793734fe10..7525c165974 100644 --- a/src/include/pg_config.h.in +++ b/src/include/pg_config.h.in @@ -485,6 +485,9 @@ /* Define to 1 if you have the `rl_reset_screen_size' function. */ #undef HAVE_RL_RESET_SCREEN_SIZE +/* Define to 1 if you have the `rl_variable_bind' function. */ +#undef HAVE_RL_VARIABLE_BIND + /* Define to 1 if you have the <security/pam_appl.h> header file. */ #undef HAVE_SECURITY_PAM_APPL_H |
