pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
lldb-netbsd: Update SVN to r. 300841
Module Name: pkgsrc-wip
Committed By: Kamil Rytarowski <n54%gmx.com@localhost>
Pushed By: kamil
Date: Thu Apr 20 18:33:49 2017 +0200
Changeset: f0c78e2831ade4ae67488bb059acbe44aa0affc4
Modified Files:
lldb-netbsd/Makefile
lldb-netbsd/distinfo
Added Files:
lldb-netbsd/patches/patch-cmake_modules_LLDBConfig.cmake
Removed Files:
lldb-netbsd/patches/patch-cmake_modules_LLDBStandalone.cmake
lldb-netbsd/patches/patch-source_Host_common_MainLoop.cpp
lldb-netbsd/patches/patch-source_Host_common_TCPSocket.cpp
Log Message:
lldb-netbsd: Update SVN to r. 300841
Rediff local patches.
LLDB Standalone build is still broken.
Sponsored by <The NetBSD Foundation>
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=f0c78e2831ade4ae67488bb059acbe44aa0affc4
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
lldb-netbsd/Makefile | 2 +-
lldb-netbsd/distinfo | 4 +---
lldb-netbsd/patches/patch-cmake_modules_LLDBConfig.cmake | 14 ++++++++++++++
.../patches/patch-cmake_modules_LLDBStandalone.cmake | 13 -------------
lldb-netbsd/patches/patch-source_Host_common_MainLoop.cpp | 13 -------------
lldb-netbsd/patches/patch-source_Host_common_TCPSocket.cpp | 13 -------------
6 files changed, 16 insertions(+), 43 deletions(-)
diffs:
diff --git a/lldb-netbsd/Makefile b/lldb-netbsd/Makefile
index d92ba960cd..2780e086ee 100644
--- a/lldb-netbsd/Makefile
+++ b/lldb-netbsd/Makefile
@@ -5,7 +5,7 @@ CATEGORIES= lang devel
SVN_REPOSITORIES= lldb
SVN_REPO.lldb= http://llvm.org/svn/llvm-project/lldb/trunk
-SVN_REVISION.lldb= 300654
+SVN_REVISION.lldb= 300841
MAINTAINER= pkgsrc-users%NetBSD.org@localhost
HOMEPAGE= http://lldb.org/
diff --git a/lldb-netbsd/distinfo b/lldb-netbsd/distinfo
index 0a1ce52470..2119d01289 100644
--- a/lldb-netbsd/distinfo
+++ b/lldb-netbsd/distinfo
@@ -12,9 +12,7 @@ Size (libcxx-3.6.2.src.tar.xz) = 944020 bytes
SHA1 (llvm-3.6.2.src.tar.xz) = 7a00257eb2bc9431e4c77c3a36b033072c54bc7e
RMD160 (llvm-3.6.2.src.tar.xz) = 521cbc5fe2925ea3c6e90c7a31f752a04045c972
Size (llvm-3.6.2.src.tar.xz) = 12802380 bytes
-SHA1 (patch-cmake_modules_LLDBStandalone.cmake) = c68c9fbe37d7f2d118febf2914b56b551eb5e696
-SHA1 (patch-source_Host_common_MainLoop.cpp) = 66cb4d07a092caac4d271ca4a638406076b5bd81
-SHA1 (patch-source_Host_common_TCPSocket.cpp) = e18a33e66c281cbc1353787752789faf609b21f0
+SHA1 (patch-cmake_modules_LLDBConfig.cmake) = f4e53b2cb22bc3cb717d3af9243420f4aabf1695
SHA1 (patch-source_Plugins_ObjectFile_ELF_ObjectFileELF.cpp) = cdc5861eedcc79d3484ba011f5be595b2afcbae2
SHA1 (patch-source_Plugins_Process_elf-core_ProcessElfCore.cpp) = e8609042fb407f3507ac7cbe00494bbad5a2ca14
SHA1 (patch-source_Plugins_Process_elf-core_ProcessElfCore.h) = 902ce5e0187aa2649986db08c79af7291b852727
diff --git a/lldb-netbsd/patches/patch-cmake_modules_LLDBConfig.cmake b/lldb-netbsd/patches/patch-cmake_modules_LLDBConfig.cmake
new file mode 100644
index 0000000000..e7ae1d00f6
--- /dev/null
+++ b/lldb-netbsd/patches/patch-cmake_modules_LLDBConfig.cmake
@@ -0,0 +1,14 @@
+$NetBSD$
+
+--- cmake/modules/LLDBConfig.cmake.orig 2017-04-20 15:57:09.000000000 +0000
++++ cmake/modules/LLDBConfig.cmake
+@@ -433,7 +433,9 @@ endif()
+
+ find_package(Backtrace)
+
++include(CheckIncludeFile)
+ check_include_file(termios.h HAVE_TERMIOS_H)
++check_include_file(sys/event.h HAVE_SYS_EVENT_H)
+
+ # These checks exist in LLVM's configuration, so I want to match the LLVM names
+ # so that the check isn't duplicated, but we translate them into the LLDB names
diff --git a/lldb-netbsd/patches/patch-cmake_modules_LLDBStandalone.cmake b/lldb-netbsd/patches/patch-cmake_modules_LLDBStandalone.cmake
deleted file mode 100644
index 4641527762..0000000000
--- a/lldb-netbsd/patches/patch-cmake_modules_LLDBStandalone.cmake
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD$
-
---- cmake/modules/LLDBStandalone.cmake.orig 2017-04-19 04:06:59.854088855 +0000
-+++ cmake/modules/LLDBStandalone.cmake
-@@ -4,6 +4,8 @@ if (CMAKE_SOURCE_DIR STREQUAL CMAKE_CURR
- project(lldb)
- cmake_minimum_required(VERSION 2.8.12.2)
-
-+ include(CheckIncludeFile)
-+
- if (POLICY CMP0022)
- cmake_policy(SET CMP0022 NEW) # automatic when 2.8.12 is required
- endif()
diff --git a/lldb-netbsd/patches/patch-source_Host_common_MainLoop.cpp b/lldb-netbsd/patches/patch-source_Host_common_MainLoop.cpp
deleted file mode 100644
index 747b039d09..0000000000
--- a/lldb-netbsd/patches/patch-source_Host_common_MainLoop.cpp
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD$
-
---- source/Host/common/MainLoop.cpp.orig 2017-04-19 03:59:22.000000000 +0000
-+++ source/Host/common/MainLoop.cpp
-@@ -7,7 +7,7 @@
- //
- //===----------------------------------------------------------------------===//
-
--#include "llvm/Config/config.h"
-+#include "llvm/Config/llvm-config.h"
-
- #include "lldb/Host/MainLoop.h"
- #include "lldb/Utility/Error.h"
diff --git a/lldb-netbsd/patches/patch-source_Host_common_TCPSocket.cpp b/lldb-netbsd/patches/patch-source_Host_common_TCPSocket.cpp
deleted file mode 100644
index 18f5930997..0000000000
--- a/lldb-netbsd/patches/patch-source_Host_common_TCPSocket.cpp
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD$
-
---- source/Host/common/TCPSocket.cpp.orig 2017-04-19 03:59:22.000000000 +0000
-+++ source/Host/common/TCPSocket.cpp
-@@ -17,7 +17,7 @@
- #include "lldb/Host/MainLoop.h"
- #include "lldb/Utility/Log.h"
-
--#include "llvm/Config/config.h"
-+#include "llvm/Config/llvm-config.h"
- #include "llvm/Support/raw_ostream.h"
-
- #ifndef LLDB_DISABLE_POSIX
Home |
Main Index |
Thread Index |
Old Index