From: Adam Dickmeiss Date: Sun, 7 May 2006 19:15:16 +0000 (+0000) Subject: Do nothing in command_generator if no readline is present X-Git-Tag: YAZ.2.1.20~66 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=5f9ae0e96f731be9abf8bc2eca538681fbd0279f Do nothing in command_generator if no readline is present --- 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; }