f49d2e187c
- Update to llvm 3.8.0 * See http://llvm.org/releases/3.8.0/docs/ReleaseNotes.html and http://llvm.org/releases/3.8.0/tools/clang/docs/ReleaseNotes.html - Fold lldb build into llvm and disable python support - Drop clang-disable-ada-extension.patch, libcxxabi-exceptions.patch and cmake-host-triple.patch - Add revert-cmake-soname.patch to fix soname handling OBS-URL: https://build.opensuse.org/request/show/368685 OBS-URL: https://build.opensuse.org/package/show/devel:tools:compiler/llvm?expand=0&rev=430
32 lines
790 B
Diff
32 lines
790 B
Diff
Index: lldb-3.8.0.src/source/lldb.cpp
|
|
===================================================================
|
|
--- lldb-3.8.0.src.orig/source/lldb.cpp
|
|
+++ lldb-3.8.0.src/source/lldb.cpp
|
|
@@ -21,11 +21,7 @@ extern "C" const unsigned char liblldb_c
|
|
static const char *
|
|
GetLLDBRevision()
|
|
{
|
|
-#ifdef LLDB_REVISION
|
|
return LLDB_REVISION;
|
|
-#else
|
|
- return NULL;
|
|
-#endif
|
|
}
|
|
|
|
static const char *
|
|
Index: lldb-3.8.0.src/source/Core/IOHandler.cpp
|
|
===================================================================
|
|
--- lldb-3.8.0.src.orig/source/Core/IOHandler.cpp
|
|
+++ lldb-3.8.0.src/source/Core/IOHandler.cpp
|
|
@@ -9,8 +9,8 @@
|
|
|
|
// C Includes
|
|
#ifndef LLDB_DISABLE_CURSES
|
|
-#include <curses.h>
|
|
-#include <panel.h>
|
|
+#include <ncurses/curses.h>
|
|
+#include <ncurses/panel.h>
|
|
#endif
|
|
|
|
// C++ Includes
|