diff options
Diffstat (limited to 'src/bin/psql/input.h')
-rw-r--r-- | src/bin/psql/input.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/bin/psql/input.h b/src/bin/psql/input.h index fbb52f20da3..4ed51f59cad 100644 --- a/src/bin/psql/input.h +++ b/src/bin/psql/input.h @@ -3,7 +3,7 @@ * * Copyright 2000 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/input.h,v 1.17 2002/09/04 20:31:36 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/input.h,v 1.18 2003/02/19 04:04:04 momjian Exp $ */ #ifndef INPUT_H #define INPUT_H @@ -18,11 +18,15 @@ #define USE_READLINE 1 #if defined(HAVE_READLINE_READLINE_H) #include <readline/readline.h> +#elif defined(HAVE_EDITLINE_READLINE_H) +#include <editline/readline.h> #elif defined(HAVE_READLINE_H) #include <readline.h> #endif #if defined(HAVE_READLINE_HISTORY_H) #include <readline/history.h> +#elif defined(HAVE_EDITLINE_HISTORY_H) +#include <editline/history.h> #elif defined(HAVE_HISTORY_H) #include <history.h> #endif |