From 5f9ae0e96f731be9abf8bc2eca538681fbd0279f Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Sun, 7 May 2006 19:15:16 +0000 Subject: [PATCH] Do nothing in command_generator if no readline is present --- client/client.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/client/client.c b/client/client.c index ffb1b31..afbd8ea 100644 --- a/client/client.c +++ b/client/client.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2006, Index Data ApS * See the file LICENSE for details. * - * $Id: client.c,v 1.306 2006-05-07 19:13:55 adam Exp $ + * $Id: client.c,v 1.307 2006-05-07 19:15:16 adam Exp $ */ #include @@ -4539,6 +4539,7 @@ void process_cmd_line(char* line) static char *command_generator(const char *text, int state) { +#if HAVE_READLINE_READLINE_H static int idx; if (state==0) { idx = 0; @@ -4549,6 +4550,7 @@ static char *command_generator(const char *text, int state) return strdup(cmd_array[idx-1].cmd); } } +#endif return NULL; } -- 1.7.10.4