pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

lldb-git: Fix build issue



Module Name:	pkgsrc-wip
Committed By:	Kamil Rytarowski <n54%gmx.com@localhost>
Pushed By:	kamil
Date:		Fri Apr 28 22:07:38 2017 +0200
Changeset:	8220d360c7c0bd657a49686fec5953f8f4087ec5

Modified Files:
	lldb-git/distinfo
	lldb-git/patches/patch-source_Plugins_Process_elf-core_ProcessElfCore.cpp

Log Message:
lldb-git: Fix build issue

Fix NETBSD namespace usage.

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=8220d360c7c0bd657a49686fec5953f8f4087ec5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 lldb-git/distinfo                                  |  2 +-
 ...rce_Plugins_Process_elf-core_ProcessElfCore.cpp | 32 +++++++++++-----------
 2 files changed, 17 insertions(+), 17 deletions(-)

diffs:
diff --git a/lldb-git/distinfo b/lldb-git/distinfo
index f69d9ef415..df6f4a643f 100644
--- a/lldb-git/distinfo
+++ b/lldb-git/distinfo
@@ -13,5 +13,5 @@ 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-source_Plugins_ObjectFile_ELF_ObjectFileELF.cpp) = d7d43c20b34068a5f535b8eeb1af2dc87c2b3175
-SHA1 (patch-source_Plugins_Process_elf-core_ProcessElfCore.cpp) = 9497641db4864d5de4240a4fbd46a4032a042adf
+SHA1 (patch-source_Plugins_Process_elf-core_ProcessElfCore.cpp) = af35bb785ff14a164c2aa019309cc5e5f0e27989
 SHA1 (patch-source_Plugins_Process_elf-core_ProcessElfCore.h) = 5754bcca237decc7ef8519c54a34840b1869d476
diff --git a/lldb-git/patches/patch-source_Plugins_Process_elf-core_ProcessElfCore.cpp b/lldb-git/patches/patch-source_Plugins_Process_elf-core_ProcessElfCore.cpp
index 484ef4f827..6eb8ac24da 100644
--- a/lldb-git/patches/patch-source_Plugins_Process_elf-core_ProcessElfCore.cpp
+++ b/lldb-git/patches/patch-source_Plugins_Process_elf-core_ProcessElfCore.cpp
@@ -79,24 +79,24 @@ $NetBSD$
 +
 +  cpi_signo = data.GetU32(&offset); /* killing signal */
 +
-+  offset += NT_PROCINFO_CPI_SIGCODE_SIZE;
-+  offset += NT_PROCINFO_CPI_SIGPEND_SIZE;
-+  offset += NT_PROCINFO_CPI_SIGMASK_SIZE;
-+  offset += NT_PROCINFO_CPI_SIGIGNORE_SIZE;
-+  offset += NT_PROCINFO_CPI_SIGCATCH_SIZE;
-+  offset += NT_PROCINFO_CPI_PID_SIZE;
-+  offset += NT_PROCINFO_CPI_PPID_SIZE;
-+  offset += NT_PROCINFO_CPI_PGRP_SIZE;
-+  offset += NT_PROCINFO_CPI_SID_SIZE;
-+  offset += NT_PROCINFO_CPI_RUID_SIZE;
-+  offset += NT_PROCINFO_CPI_EUID_SIZE;
-+  offset += NT_PROCINFO_CPI_SVUID_SIZE;
-+  offset += NT_PROCINFO_CPI_RGID_SIZE;
-+  offset += NT_PROCINFO_CPI_EGID_SIZE;
-+  offset += NT_PROCINFO_CPI_SVGID_SIZE;
++  offset += NETBSD::NT_PROCINFO_CPI_SIGCODE_SIZE;
++  offset += NETBSD::NT_PROCINFO_CPI_SIGPEND_SIZE;
++  offset += NETBSD::NT_PROCINFO_CPI_SIGMASK_SIZE;
++  offset += NETBSD::NT_PROCINFO_CPI_SIGIGNORE_SIZE;
++  offset += NETBSD::NT_PROCINFO_CPI_SIGCATCH_SIZE;
++  offset += NETBSD::NT_PROCINFO_CPI_PID_SIZE;
++  offset += NETBSD::NT_PROCINFO_CPI_PPID_SIZE;
++  offset += NETBSD::NT_PROCINFO_CPI_PGRP_SIZE;
++  offset += NETBSD::NT_PROCINFO_CPI_SID_SIZE;
++  offset += NETBSD::NT_PROCINFO_CPI_RUID_SIZE;
++  offset += NETBSD::NT_PROCINFO_CPI_EUID_SIZE;
++  offset += NETBSD::NT_PROCINFO_CPI_SVUID_SIZE;
++  offset += NETBSD::NT_PROCINFO_CPI_RGID_SIZE;
++  offset += NETBSD::NT_PROCINFO_CPI_EGID_SIZE;
++  offset += NETBSD::NT_PROCINFO_CPI_SVGID_SIZE;
 +  cpi_nlwps = data.GetU32(&offset); /* number of LWPs */
 +
-+  offset += NT_PROCINFO_CPI_NAME_SIZE;
++  offset += NETBSD::NT_PROCINFO_CPI_NAME_SIZE;
 +  cpi_siglwp = data.GetU32(&offset); /* LWP target of killing signal */
 +
 +  return Error();


Home | Main Index | Thread Index | Old Index