pkgsrc-WIP-changes archive

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

corefx-git: Fix build with LLVM-3.9



Module Name:	pkgsrc-wip
Committed By:	Kamil Rytarowski <n54%gmx.com@localhost>
Pushed By:	kamil
Date:		Sat May 7 13:51:05 2016 +0200
Changeset:	c3761465126ef69f88d5094d4eb080f49f2b19dc

Modified Files:
	corefx-git/distinfo
Added Files:
	corefx-git/patches/patch-src_Native_System.Native_pal__console.cpp

Log Message:
corefx-git: Fix build with LLVM-3.9

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=c3761465126ef69f88d5094d4eb080f49f2b19dc

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

diffstat:
 corefx-git/distinfo                                         |  1 +
 .../patches/patch-src_Native_System.Native_pal__console.cpp | 13 +++++++++++++
 2 files changed, 14 insertions(+)

diffs:
diff --git a/corefx-git/distinfo b/corefx-git/distinfo
index ec78fc4..8913334 100644
--- a/corefx-git/distinfo
+++ b/corefx-git/distinfo
@@ -1,5 +1,6 @@
 $NetBSD$
 SHA1 (patch-src_Native_Common_pal__config.h.in) = 08b4e586eeed9e904547b2c169a0e19db6682a40
+SHA1 (patch-src_Native_System.Native_pal__console.cpp) = 44be298618c7a5510367e8526b8fd56932f6c49e
 SHA1 (patch-src_Native_System.Net.Security.Native_CMakeLists.txt) = 5be5902a707925dfd9d3ff613dbf41512b984dbd
 SHA1 (patch-src_Native_System.Net.Security.Native_pal__gssapi.cpp) = 5919f3284c6e80a0b6e8c807b6c6dfd2de0bd994
 SHA1 (patch-src_Native_System.Net.Security.Native_pal__gssapi.h) = 3ef35fb72afe48e5ce80a9a528965eedd24f8ddd
diff --git a/corefx-git/patches/patch-src_Native_System.Native_pal__console.cpp b/corefx-git/patches/patch-src_Native_System.Native_pal__console.cpp
new file mode 100644
index 0000000..f28b2b2
--- /dev/null
+++ b/corefx-git/patches/patch-src_Native_System.Native_pal__console.cpp
@@ -0,0 +1,13 @@
+$NetBSD$
+
+--- src/Native/System.Native/pal_console.cpp.orig	2016-05-03 12:05:51.000000000 +0000
++++ src/Native/System.Native/pal_console.cpp
+@@ -463,7 +463,7 @@ static bool InitializeSignalHandling()
+     int rv;
+ 
+     // Hook up signal handlers for use with ctrl-C / ctrl-Break handling
+-    newAction.sa_sigaction = &TransferSignalToHandlerLoop,
++    newAction.sa_sigaction = &TransferSignalToHandlerLoop;
+     rv = sigaction(SIGINT, &newAction, &g_origSigIntHandler);
+     assert(rv == 0);
+     rv = sigaction(SIGQUIT, &newAction, &g_origSigQuitHandler);


Home | Main Index | Thread Index | Old Index