From 13dc7bacf1c88b61e92f7622f6f125593524a89a Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Sat, 29 Sep 2012 17:50:50 -0400 Subject: Added detection of 'readline' library at compile-time. --- src/base/main/mainUtils.c | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) (limited to 'src') diff --git a/src/base/main/mainUtils.c b/src/base/main/mainUtils.c index b46ffaea..475d13ec 100644 --- a/src/base/main/mainUtils.c +++ b/src/base/main/mainUtils.c @@ -21,7 +21,7 @@ #include "base/abc/abc.h" #include "mainInt.h" -#ifndef _WIN32 +#if !defined(_WIN32) && defined(READLINE) #include #include #endif @@ -71,21 +71,20 @@ char * Abc_UtilsGetVersion( Abc_Frame_t * pAbc ) char * Abc_UtilsGetUsersInput( Abc_Frame_t * pAbc ) { static char Prompt[5000]; -#ifndef _WIN32 - static char * line = NULL; -#endif - sprintf( Prompt, "abc %02d> ", pAbc->nSteps ); -#ifdef _WIN32 - fprintf( pAbc->Out, "%s", Prompt ); - fgets( Prompt, 5000, stdin ); - return Prompt; -#else +#if !defined(_WIN32) && defined(READLINE) + { + static char * line = NULL; if (line != NULL) ABC_FREE(line); line = readline(Prompt); if (line == NULL){ printf("***EOF***\n"); exit(0); } add_history(line); return line; + } +#else + fprintf( pAbc->Out, "%s", Prompt ); + fgets( Prompt, 5000, stdin ); + return Prompt; #endif } -- cgit v1.2.3