pkgsrc-WIP-changes archive

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

coreclr-git: Remove local patch - fixed upstream differently



Module Name:	pkgsrc-wip
Committed By:	Kamil Rytarowski <n54%gmx.com@localhost>
Pushed By:	kamil
Date:		Fri Feb 5 11:26:27 2016 +0100
Changeset:	d8fabd2215d1ef73e9b60eca2cf46bcbd3c450b6

Modified Files:
	coreclr-git/distinfo
Removed Files:
	coreclr-git/patches/patch-src_pal_src_cruntime_file.cpp

Log Message:
coreclr-git: Remove local patch - fixed upstream differently

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

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

diffstat:
 coreclr-git/distinfo                               |  1 -
 .../patches/patch-src_pal_src_cruntime_file.cpp    | 35 ----------------------
 2 files changed, 36 deletions(-)

diffs:
diff --git a/coreclr-git/distinfo b/coreclr-git/distinfo
index 0a8ee6e..aa72094 100644
--- a/coreclr-git/distinfo
+++ b/coreclr-git/distinfo
@@ -4,7 +4,6 @@ SHA1 (patch-src_debug_ee_controller.h) = f1a11bdadd82b706d37236cf41d629aee247cd8
 SHA1 (patch-src_debug_ee_debugger.h) = 4f93c0da59999e326bfec29b57a202acf0341309
 SHA1 (patch-src_pal_inc_pal__char16.h) = 205f6a8533838c192b36bbb00155da1b02e0f629
 SHA1 (patch-src_pal_src_CMakeLists.txt) = 7f5b7e7f669efa42fb1bc230949e508a0df080ed
-SHA1 (patch-src_pal_src_cruntime_file.cpp) = fc8f878ee82c5013df6114b55fcc2a3af7cdcd04
 SHA1 (patch-src_pal_src_debug_debug.cpp) = 0d6bee5d2896de64effafa01d2e2989de82c76fc
 SHA1 (patch-src_pal_src_exception_seh-unwind.cpp) = 64a221a2f57b6654cae73a2aba0b59daf33b8224
 SHA1 (patch-src_pal_src_exception_signal.cpp) = ba0cabad71792a0108ffd9ec29254751f1e95997
diff --git a/coreclr-git/patches/patch-src_pal_src_cruntime_file.cpp b/coreclr-git/patches/patch-src_pal_src_cruntime_file.cpp
deleted file mode 100644
index 5322a23..0000000
--- a/coreclr-git/patches/patch-src_pal_src_cruntime_file.cpp
+++ /dev/null
@@ -1,35 +0,0 @@
-$NetBSD$
-
---- src/pal/src/cruntime/file.cpp.orig	2016-01-28 19:04:13.000000000 +0000
-+++ src/pal/src/cruntime/file.cpp
-@@ -844,6 +844,15 @@ PAL_fgetpos (
-     // TODO: implement for Linux if required
-     ASSERT(FALSE);
-     return -1;
-+#elif defined(__NetBSD__)
-+    off_t native_pos;
-+
-+    if ((native_pos = ftello(f->bsdFilePtr)) == -1)
-+        return -1;
-+
-+    *pos = native_pos;
-+
-+    return 0;
- #else
-     int    nRetVal = -1;
-     fpos_t native_pos;
-@@ -890,6 +899,14 @@ PAL_fsetpos (
-     // TODO: implement for Linux if required
-     ASSERT(FALSE);
-     return  -1;
-+#elif defined(__NetBSD__)
-+    off_t native_pos;
-+
-+    native_pos = *pos;
-+    if (fseeko(f->bsdFilePtr, native_pos, SEEK_SET) == -1)
-+        return -1;
-+
-+    return 0;
- #else
-     int    nRetVal = -1;
-     fpos_t native_pos;


Home | Main Index | Thread Index | Old Index