1
0
Fork 0

readline vs. linenoise vs. dummyshell: next try

This commit is contained in:
Jan Steemann 2014-07-30 09:30:41 +02:00
parent e05604e5b4
commit 728a439d3f
1 changed files with 2 additions and 2 deletions

View File

@ -30,9 +30,9 @@
#ifdef _WIN32
#include "LinenoiseShell.h"
#elif TRI_HAVE_LINENOISE
#elif defined TRI_HAVE_LINENOISE
#include "LinenoiseShell.h"
#elif TRI_HAVE_READLINE
#elif defined TRI_HAVE_READLINE
#include "ReadlineShell.h"
#else
#include "DummyShell.h"