Commit d70b4247 authored by Tom Stellard's avatar Tom Stellard
Browse files

Merging r239199:

------------------------------------------------------------------------
r239199 | labath | 2015-06-05 19:14:14 -0400 (Fri, 05 Jun 2015) | 3 lines

Remove unused editline includes

LLDB included editline in a couple of places, not respecting LLDB_DISABLE_LIBEDIT. As far as I can tell, these includes are not used, so I am removing them.
------------------------------------------------------------------------

Differential Revision: http://reviews.llvm.org/D10324

llvm-svn: 240294
parent 112b2dab
Loading
Loading
Loading
Loading
+0 −10
Original line number Diff line number Diff line
@@ -103,16 +103,6 @@

    #include <pthread.h>
    #include <sys/time.h>

#if !defined(__ANDROID_NDK__)
	#include <histedit.h>
	#if defined(__FreeBSD__) || defined(__NetBSD__)
		#include <readline/readline.h>
	#else
		#include <editline/readline.h>
	#endif
#endif

#endif

#endif // lldb_Platform_h_
+0 −7
Original line number Diff line number Diff line
@@ -96,14 +96,7 @@ extern sighandler_t signal(int sig, sighandler_t);
#include <termios.h>
#include <unistd.h>

#include <histedit.h>
#include <pthread.h>
#include <sys/time.h>

#if defined(__FreeBSD__)
#include <readline/readline.h>
#else
#include <editline/readline.h>
#endif

#endif