pkgsrc-WIP-changes archive

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

mono-git: Drop broken patches



Module Name:	pkgsrc-wip
Committed By:	Kamil Rytarowski <n54%gmx.com@localhost>
Pushed By:	kamil
Date:		Mon Aug 8 22:21:04 2016 +0200
Changeset:	47dc11783f7b24667e06ff9769f591615db85deb

Modified Files:
	mono-git/distinfo
Removed Files:
	mono-git/patches/patch-mono_io-layer_io.c
	mono-git/patches/patch-mono_metadata_mono-perfcounters.c
	mono-git/patches/patch-mono_utils_mono-proclib.c

Log Message:
mono-git: Drop broken patches

They will be redone.

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

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

diffstat:
 mono-git/distinfo                                  |  3 --
 mono-git/patches/patch-mono_io-layer_io.c          | 13 ------
 .../patch-mono_metadata_mono-perfcounters.c        | 46 ----------------------
 mono-git/patches/patch-mono_utils_mono-proclib.c   | 13 ------
 4 files changed, 75 deletions(-)

diffs:
diff --git a/mono-git/distinfo b/mono-git/distinfo
index 85aff54..8373ed4 100644
--- a/mono-git/distinfo
+++ b/mono-git/distinfo
@@ -5,8 +5,5 @@ RMD160 (mono-4.4.0.122.tar.bz2) = 41d58720d7cb4f510cad64c1dbecdd9a6c9d19a1
 SHA512 (mono-4.4.0.122.tar.bz2) = 264b3779fc94e40c44f8cc637169d7f3a6367ead75b932069bc0498d53c13ea62ef5711784d1bc0767b85e0cb04424b9eee0ce7ed10772076902b55210097a10
 Size (mono-4.4.0.122.tar.bz2) = 84904723 bytes
 SHA1 (patch-eglib_configure.ac) = e9cac305765024018f01271786ed80ee7c44b814
-SHA1 (patch-mono_io-layer_io.c) = 03b4b03abc2f6dbb5fed39f07b8a1bc23cca07b8
-SHA1 (patch-mono_metadata_mono-perfcounters.c) = 6b4b4019e09e529c2f6f8faa3936e3ac91ddfe17
 SHA1 (patch-mono_utils_Makefile.am) = b3bf378d1576c98262dce0a1b08bf45d013fa323
-SHA1 (patch-mono_utils_mono-proclib.c) = 30739ccde2a25f5fd8dcf0e7d581443b6e175ade
 SHA1 (patch-mono_utils_mono-threads-netbsd.c) = 244d88cd407bc28f498bb2e35b44304a7c911325
diff --git a/mono-git/patches/patch-mono_io-layer_io.c b/mono-git/patches/patch-mono_io-layer_io.c
deleted file mode 100644
index 32856f1..0000000
--- a/mono-git/patches/patch-mono_io-layer_io.c
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD$
-
---- mono/io-layer/io.c.orig	2016-04-16 14:26:45.000000000 +0000
-+++ mono/io-layer/io.c
-@@ -3422,7 +3422,7 @@ gboolean CreatePipe (gpointer *readpipe,
- 	return(TRUE);
- }
- 
--#ifdef HAVE_GETFSSTAT
-+#ifdef HAVE_GETFSSTATx
- /* Darwin has getfsstat */
- gint32 GetLogicalDriveStrings (guint32 len, gunichar2 *buf)
- {
diff --git a/mono-git/patches/patch-mono_metadata_mono-perfcounters.c b/mono-git/patches/patch-mono_metadata_mono-perfcounters.c
deleted file mode 100644
index e358cce..0000000
--- a/mono-git/patches/patch-mono_metadata_mono-perfcounters.c
+++ /dev/null
@@ -1,46 +0,0 @@
-$NetBSD$
-
---- mono/metadata/mono-perfcounters.c.orig	2016-04-16 14:26:45.000000000 +0000
-+++ mono/metadata/mono-perfcounters.c
-@@ -34,6 +34,9 @@
- #if defined (__NetBSD__) || defined (__APPLE__)
- #include <sys/sysctl.h>
- #endif
-+#if defined (__NetBSD__)
-+#include <sys/vmmeter.h>
-+#endif
- #include "metadata/mono-perfcounters.h"
- #include "metadata/appdomain.h"
- #include "metadata/object-internals.h"
-@@ -474,11 +477,10 @@ mono_determine_physical_ram_available_si
- #elif defined (__NetBSD__)
- 	struct vmtotal vm_total;
- 	guint64 page_size;
--	int mib [2];
- 	size_t len;
- 
- 
--	mib = {
-+	int mib[2] = {
- 		CTL_VM,
- #if defined (VM_METER)
- 		VM_METER
-@@ -489,14 +491,12 @@ mono_determine_physical_ram_available_si
- 	len = sizeof (vm_total);
- 	sysctl (mib, 2, &vm_total, &len, NULL, 0);
- 
--	mib = {
--		CTL_HW,
--		HW_PAGESIZE
--	};
-+	mib[0] = CTL_HW;
-+	mib[1] = HW_PAGESIZE;
- 	len = sizeof (page_size);
--	sysctl (mib, 2, &page_size, &len, NULL, 0
-+	sysctl (mib, 2, &page_size, &len, NULL, 0);
- 
--	return ((guint64) value.t_free * page_size) / 1024;
-+	return 0; // ((guint64) value.t_free * page_size) / 1024;
- #elif defined (__APPLE__)
- 	mach_msg_type_number_t count = HOST_VM_INFO_COUNT;
- 	mach_port_t host = mach_host_self();
diff --git a/mono-git/patches/patch-mono_utils_mono-proclib.c b/mono-git/patches/patch-mono_utils_mono-proclib.c
deleted file mode 100644
index 9b65f53..0000000
--- a/mono-git/patches/patch-mono_utils_mono-proclib.c
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD$
-
---- mono/utils/mono-proclib.c.orig	2016-04-17 12:53:59.000000000 +0000
-+++ mono/utils/mono-proclib.c
-@@ -58,7 +58,7 @@
- #define kinfo_pid_member ki_pid
- #define kinfo_name_member ki_comm
- #endif
--#define USE_SYSCTL 1
-+#define USE_SYSCTL 0
- #endif
- 
- /**


Home | Main Index | Thread Index | Old Index