[Lldb-commits] [lldb] r189820 - Revert part of my previous patch, we should be using libedit under
Eric Christopher
echristo at gmail.com
Tue Sep 3 08:38:37 PDT 2013
Author: echristo
Date: Tue Sep 3 10:38:37 2013
New Revision: 189820
URL: http://llvm.org/viewvc/llvm-project?rev=189820&view=rev
Log:
Revert part of my previous patch, we should be using libedit under
linux for command line editing.
Modified:
lldb/trunk/tools/driver/IOChannel.h
Modified: lldb/trunk/tools/driver/IOChannel.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/driver/IOChannel.h?rev=189820&r1=189819&r2=189820&view=diff
==============================================================================
--- lldb/trunk/tools/driver/IOChannel.h (original)
+++ lldb/trunk/tools/driver/IOChannel.h Tue Sep 3 10:38:37 2013
@@ -13,7 +13,7 @@
#include <string>
#include <queue>
-#if defined(__FreeBSD__) || defined(__linux__)
+#if defined(__FreeBSD__)
#include <readline/readline.h>
#else
#include <editline/readline.h>
More information about the lldb-commits
mailing list