pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
lldb-netbsd: Drop a local patch for TCPSocket.cpp
Module Name: pkgsrc-wip
Committed By: Kamil Rytarowski <n54%gmx.com@localhost>
Pushed By: kamil
Date: Sun Feb 25 11:45:38 2018 +0100
Changeset: 1583e9f2af8f91c3ec355d05f2d87f188e748c50
Modified Files:
lldb-netbsd/distinfo
Removed Files:
lldb-netbsd/patches/patch-source_Host_common_TCPSocket.cpp
Log Message:
lldb-netbsd: Drop a local patch for TCPSocket.cpp
This is no longer needed. A local setup issue has been narrowed down
to a broken mdnsd program.
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=1583e9f2af8f91c3ec355d05f2d87f188e748c50
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
lldb-netbsd/distinfo | 1 -
.../patches/patch-source_Host_common_TCPSocket.cpp | 23 ----------------------
2 files changed, 24 deletions(-)
diffs:
diff --git a/lldb-netbsd/distinfo b/lldb-netbsd/distinfo
index dcf870fb72..462571b386 100644
--- a/lldb-netbsd/distinfo
+++ b/lldb-netbsd/distinfo
@@ -12,5 +12,4 @@ 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-source_Host_common_TCPSocket.cpp) = ce43194a076579a68d9fc6cbc7d5388d721acd68
SHA1 (patch-source_Plugins_ObjectFile_ELF_ObjectFileELF.cpp) = b01ecef7dfe109d047663997452065cdc4242292
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 44a41e7da2..0000000000
--- a/lldb-netbsd/patches/patch-source_Host_common_TCPSocket.cpp
+++ /dev/null
@@ -1,23 +0,0 @@
-$NetBSD$
-
---- source/Host/common/TCPSocket.cpp.orig 2018-02-02 18:39:02.000000000 +0000
-+++ source/Host/common/TCPSocket.cpp
-@@ -146,14 +146,17 @@ Status TCPSocket::Connect(llvm::StringRe
- host_str.c_str(), NULL, AF_UNSPEC, SOCK_STREAM, IPPROTO_TCP);
- for (auto address : addresses) {
- error = CreateSocket(address.GetFamily());
-- if (error.Fail())
-+ if (error.Fail()) {
-+ errno = 0;
- continue;
-+ }
-
- address.SetPort(port);
-
- if (-1 == ::connect(GetNativeSocket(), &address.sockaddr(),
- address.GetLength())) {
- CLOSE_SOCKET(GetNativeSocket());
-+ errno = 0;
- continue;
- }
-
Home |
Main Index |
Thread Index |
Old Index