diff options
author | Marc G. Fournier <scrappy@hub.org> | 1997-01-25 22:52:08 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1997-01-25 22:52:08 +0000 |
commit | aa46d53fa41a073e138acf906bb25d311c575b6b (patch) | |
tree | 065019b2f683b26cf376c713fed792016e261112 /src/bin/psql/psql.c | |
parent | 374b2b06392c7aaaa850eecea8e0f49bc98cc8b8 (diff) | |
download | postgresql-aa46d53fa41a073e138acf906bb25d311c575b6b.tar.gz postgresql-aa46d53fa41a073e138acf906bb25d311c575b6b.zip |
Okay, this should pretty much clean up the psql/readline/history mess.
Added a README.readline file until configure is integrated to *try* and
explain the way things stand.
Removed a stray configure .in file
Diffstat (limited to 'src/bin/psql/psql.c')
-rw-r--r-- | src/bin/psql/psql.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/psql/psql.c b/src/bin/psql/psql.c index 8df0998c3e0..0c6e19e65be 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.52 1997/01/25 22:16:36 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.53 1997/01/25 22:51:56 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -35,12 +35,12 @@ #else # ifdef HAVE_READLINE_H # include <readline.h> -# ifndef NO_HISTORY +# if defined(HAVE_HISTORY) || defined(HAVE_LIBHISTORY) # include <history.h> # endif # else # include <readline/readline.h> -# ifndef NO_HISTORY +# if defined(HAVE_HISTORY) || defined(HAVE_LIBHISTORY) # include <readline/history.h> # endif # endif |