diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-10-04 22:31:14 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-10-04 22:31:14 +0000 |
commit | bdef2bf29682ec5c8dcb7bf6083a0c0a13f676c6 (patch) | |
tree | 4e6e9abcf8579f0654e434a24ba9bf942a336090 /src | |
parent | 6fa875d7ce918706fc00b7f53a21d67f46a2d837 (diff) | |
download | postgresql-bdef2bf29682ec5c8dcb7bf6083a0c0a13f676c6.tar.gz postgresql-bdef2bf29682ec5c8dcb7bf6083a0c0a13f676c6.zip |
Adjust configure's handling of libedit to not look for a history.h file.
Per Bob Friesenhahn's report, this file is not supplied by some versions
of libedit, and even when it is supplied it seems to be just a link to
readline.h, so we don't need to include it anyway.
Also, ensure that we won't try to use a too-old version of Bison.
The previous coding would bleat but then use it anyway; better to invoke
the 'missing' script if any grammar files need to be rebuilt.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/pg_config.h.in | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/include/pg_config.h.in b/src/include/pg_config.h.in index c6fe8879868..74a0aa24c42 100644 --- a/src/include/pg_config.h.in +++ b/src/include/pg_config.h.in @@ -101,9 +101,6 @@ /* Define to 1 if you have the `dlopen' function. */ #undef HAVE_DLOPEN -/* Define to 1 if you have the <editline/history.h> header file. */ -#undef HAVE_EDITLINE_HISTORY_H - /* Define to 1 if you have the <editline/readline.h> header file. */ #undef HAVE_EDITLINE_READLINE_H |