Modifications to handle the situation where readline.h exists, but

history.h doesn't...previously, it was assumed that both existed, or
didn't exist...but this assumption fails on the one sparc_solaris box
that I have access to, and could exist in other circumstances
This commit is contained in:
Marc G. Fournier 1997-01-25 21:58:08 +00:00
parent 49f30e80fc
commit d049cec4f5
1 changed files with 7 additions and 3 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.50 1997/01/25 03:51:59 scrappy Exp $
* $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.51 1997/01/25 21:58:08 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@ -35,10 +35,14 @@
#else
# ifdef HAVE_READLINE_H
# include <readline.h>
# include <history.h>
# ifdef HAVE_HISTORY_H
# include <history.h>
# endif
# else
# include <readline/readline.h>
# include <readline/history.h>
# ifdef HAVE_READLINE_HISTORY_H
# include <readline/history.h>
# endif
# endif
#endif