From 982c695fbd33aaabdbcb546f78ed475bdd474ea2 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Tue, 12 May 1998 23:05:12 +0000 Subject: [PATCH] The attached patch corrects two problems with autoconfiguration of psql in Postgres 6.3.2. Both of these problems were complained of recently in pgsql-questions: 1. In the right circumstances, psql.c will fail to compile due to trying to include a nonexistent . (Thread "Compile-time error" around 17 Apr 98.) 2. In other circumstances, psql will compile but does not provide command history capability, even though the underlying readline library supports it. (Various threads, most recently "query repetition in psql" around 29 Apr.) Tom Lane --- src/bin/psql/psql.c | 7 +++++-- src/include/config.h.in | 5 ++++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/src/bin/psql/psql.c b/src/bin/psql/psql.c index 97125d7957..a13ac63545 100644 --- a/src/bin/psql/psql.c +++ b/src/bin/psql/psql.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.141 1998/05/12 23:04:01 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.142 1998/05/12 23:05:12 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -39,7 +39,7 @@ #ifdef HAVE_READLINE_H #include #define USE_READLINE 1 -#if defined(HAVE_HISTORY) +#if defined(HAVE_HISTORY_H) #include #define USE_HISTORY 1 #endif @@ -53,6 +53,9 @@ #endif #endif #endif +#if defined(HAVE_HISTORY) && !defined(USE_HISTORY) +#define USE_HISTORY 1 +#endif #endif /* This prompt string is assumed to have at least 3 characters by code in MainLoop(). diff --git a/src/include/config.h.in b/src/include/config.h.in index 9d76e3af6a..2293c68f53 100644 --- a/src/include/config.h.in +++ b/src/include/config.h.in @@ -63,7 +63,7 @@ #undef HAVE_READLINE_H /* Set to 1 if you have */ -#undef HAVE_HISTORY +#undef HAVE_HISTORY_H /* Set to 1 if you have */ #undef HAVE_READLINE_HISTORY_H @@ -71,6 +71,9 @@ /* Set to 1 if you have */ #undef HAVE_READLINE_READLINE_H +/* Set to 1 if you have libreadline and it includes history functions */ +#undef HAVE_HISTORY + /* Set to 1 if you have */ #undef HAVE_DLD_H