2016-03-09 07:32:53 +01:00
|
|
|
Index: lldb-3.8.0.src/source/lldb.cpp
|
2014-09-04 18:28:42 +02:00
|
|
|
===================================================================
|
2016-03-09 07:32:53 +01:00
|
|
|
--- lldb-3.8.0.src.orig/source/lldb.cpp
|
|
|
|
+++ lldb-3.8.0.src/source/lldb.cpp
|
2015-09-03 14:41:33 +02:00
|
|
|
@@ -21,11 +21,7 @@ extern "C" const unsigned char liblldb_c
|
2014-09-04 18:28:42 +02:00
|
|
|
static const char *
|
|
|
|
GetLLDBRevision()
|
|
|
|
{
|
|
|
|
-#ifdef LLDB_REVISION
|
|
|
|
return LLDB_REVISION;
|
|
|
|
-#else
|
|
|
|
- return NULL;
|
|
|
|
-#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *
|
2016-03-09 07:32:53 +01:00
|
|
|
Index: lldb-3.8.0.src/source/Core/IOHandler.cpp
|
2014-09-04 18:28:42 +02:00
|
|
|
===================================================================
|
2016-03-09 07:32:53 +01:00
|
|
|
--- lldb-3.8.0.src.orig/source/Core/IOHandler.cpp
|
|
|
|
+++ lldb-3.8.0.src/source/Core/IOHandler.cpp
|
|
|
|
@@ -9,8 +9,8 @@
|
2014-09-04 18:28:42 +02:00
|
|
|
|
2016-03-09 07:32:53 +01:00
|
|
|
// C Includes
|
2014-09-04 18:28:42 +02:00
|
|
|
#ifndef LLDB_DISABLE_CURSES
|
2016-03-09 07:32:53 +01:00
|
|
|
-#include <curses.h>
|
2014-09-04 18:28:42 +02:00
|
|
|
-#include <panel.h>
|
2016-03-09 07:32:53 +01:00
|
|
|
+#include <ncurses/curses.h>
|
2014-09-04 18:28:42 +02:00
|
|
|
+#include <ncurses/panel.h>
|
|
|
|
#endif
|
|
|
|
|
2016-03-09 07:32:53 +01:00
|
|
|
// C++ Includes
|