aboutsummaryrefslogtreecommitdiff
path: root/lang/mono5.20
diff options
context:
space:
mode:
authorMark Linimon <linimon@FreeBSD.org>2020-12-13 05:51:17 +0000
committerMark Linimon <linimon@FreeBSD.org>2020-12-13 05:51:17 +0000
commit11d8ac82841a7beecffac19af99bea079b614c4e (patch)
tree3b17ff12022d1d78588e07d84b96c7f2c000dd11 /lang/mono5.20
parent24c751e4936384480d82f3bb0c1a1427f2f4d234 (diff)
downloadports-11d8ac82841a7beecffac19af99bea079b614c4e.tar.gz
ports-11d8ac82841a7beecffac19af99bea079b614c4e.zip
Remove stale patchfiles.
Pointy hat to: linimon PR: 238089
Notes
Notes: svn path=/head/; revision=557885
Diffstat (limited to 'lang/mono5.20')
-rw-r--r--lang/mono5.20/files/patch-configure.ac20
-rw-r--r--lang/mono5.20/files/patch-mcs_class_Mono.Security_Mono.Security.Cryptography_KeyPairPersistence.cs11
-rw-r--r--lang/mono5.20/files/patch-mono_mini_tramp-amd64.c26
-rw-r--r--lang/mono5.20/files/patch-mono_utils_mono-context.h42
4 files changed, 0 insertions, 99 deletions
diff --git a/lang/mono5.20/files/patch-configure.ac b/lang/mono5.20/files/patch-configure.ac
deleted file mode 100644
index 280b4da2ddb1..000000000000
--- a/lang/mono5.20/files/patch-configure.ac
+++ /dev/null
@@ -1,20 +0,0 @@
---- configure.ac.orig 2018-04-18 10:51:42.000000000 +0300
-+++ configure.ac 2018-06-24 02:38:19.860780000 +0300
-@@ -3271,6 +3271,8 @@
- BTLS_PLATFORM=i386
- ;;
- openbsd*|freebsd*|kfreebsd-gnu*)
-+ BTLS_SUPPORTED=yes
-+ BTLS_PLATFORM=i386
- ;;
- esac
- ;;
-@@ -3295,6 +3297,8 @@
- boehm_supported=false
- ;;
- openbsd*|freebsd*|kfreebsd-gnu*)
-+ BTLS_SUPPORTED=yes
-+ BTLS_PLATFORM=x86_64
- ;;
- mingw*)
- ;;
diff --git a/lang/mono5.20/files/patch-mcs_class_Mono.Security_Mono.Security.Cryptography_KeyPairPersistence.cs b/lang/mono5.20/files/patch-mcs_class_Mono.Security_Mono.Security.Cryptography_KeyPairPersistence.cs
deleted file mode 100644
index 5af30b379a35..000000000000
--- a/lang/mono5.20/files/patch-mcs_class_Mono.Security_Mono.Security.Cryptography_KeyPairPersistence.cs
+++ /dev/null
@@ -1,11 +0,0 @@
---- mcs/class/Mono.Security/Mono.Security.Cryptography/KeyPairPersistence.cs.orig 2017-07-20 18:10:59 UTC
-+++ mcs/class/Mono.Security/Mono.Security.Cryptography/KeyPairPersistence.cs
-@@ -244,7 +244,7 @@ namespace Mono.Security.Cryptography {
- if ((_machinePath == null) || (!_machinePathExists)) {
- _machinePath = Path.Combine (
- Environment.GetFolderPath (Environment.SpecialFolder.CommonApplicationData),
-- ".mono");
-+ "mono");
- _machinePath = Path.Combine (_machinePath, "keypairs");
-
- _machinePathExists = Directory.Exists (_machinePath);
diff --git a/lang/mono5.20/files/patch-mono_mini_tramp-amd64.c b/lang/mono5.20/files/patch-mono_mini_tramp-amd64.c
deleted file mode 100644
index c09b13cf0fec..000000000000
--- a/lang/mono5.20/files/patch-mono_mini_tramp-amd64.c
+++ /dev/null
@@ -1,26 +0,0 @@
---- mono/mini/tramp-amd64.c.orig 2018-04-13 23:37:57 UTC
-+++ mono/mini/tramp-amd64.c
-@@ -363,7 +363,11 @@ mono_arch_create_generic_trampoline (Mon
- }
- for (i = 0; i < AMD64_XMM_NREG; ++i)
- if (AMD64_IS_ARGUMENT_XREG (i))
-+#if defined(MONO_HAVE_SIMD_REG)
- amd64_movdqu_membase_reg (code, AMD64_RBP, saved_fpregs_offset + (i * sizeof(MonoContextSimdReg)), i);
-+#else
-+ amd64_movsd_membase_reg (code, AMD64_RBP, saved_fpregs_offset + (i * sizeof(double)), i);
-+#endif
-
- /* Check that the stack is aligned */
- amd64_mov_reg_reg (code, AMD64_R11, AMD64_RSP, sizeof (mgreg_t));
-@@ -540,7 +544,11 @@ mono_arch_create_generic_trampoline (Mon
- amd64_mov_reg_membase (code, i, AMD64_RBP, saved_regs_offset + (i * sizeof(mgreg_t)), sizeof(mgreg_t));
- for (i = 0; i < AMD64_XMM_NREG; ++i)
- if (AMD64_IS_ARGUMENT_XREG (i))
-+#if defined(MONO_HAVE_SIMD_REG)
- amd64_movdqu_reg_membase (code, i, AMD64_RBP, saved_fpregs_offset + (i * sizeof(MonoContextSimdReg)));
-+#else
-+ amd64_movsd_reg_membase (code, i, AMD64_RBP, saved_fpregs_offset + (i * sizeof(double)));
-+#endif
-
- /* Restore stack */
- #if TARGET_WIN32
diff --git a/lang/mono5.20/files/patch-mono_utils_mono-context.h b/lang/mono5.20/files/patch-mono_utils_mono-context.h
deleted file mode 100644
index e08b5ea2e9b7..000000000000
--- a/lang/mono5.20/files/patch-mono_utils_mono-context.h
+++ /dev/null
@@ -1,42 +0,0 @@
---- mono/utils/mono-context.h.orig 2018-04-13 23:37:57 UTC
-+++ mono/utils/mono-context.h
-@@ -24,23 +24,30 @@
-
- #if defined(TARGET_X86)
- #if defined(__APPLE__)
-+#define MONO_HAVE_SIMD_REG
- typedef struct __darwin_xmm_reg MonoContextSimdReg;
- #endif
- #elif defined(TARGET_AMD64)
- #if defined(__APPLE__)
-+#define MONO_HAVE_SIMD_REG
- typedef struct __darwin_xmm_reg MonoContextSimdReg;
- #elif defined(__linux__) && defined(__GLIBC__)
-+#define MONO_HAVE_SIMD_REG
- typedef struct _libc_xmmreg MonoContextSimdReg;
- #elif defined(HOST_WIN32)
-+#define MONO_HAVE_SIMD_REG
- #include <emmintrin.h>
- typedef __m128d MonoContextSimdReg;
- #elif defined(HOST_ANDROID)
-+#define MONO_HAVE_SIMD_REG
- typedef struct _libc_xmmreg MonoContextSimdReg;
- #elif defined(__linux__)
-+#define MONO_HAVE_SIMD_REG
- #include <emmintrin.h>
- typedef __m128d MonoContextSimdReg;
- #endif
- #elif defined(TARGET_ARM64)
-+#define MONO_HAVE_SIMD_REG
- typedef __uint128_t MonoContextSimdReg;
- #endif
-
-@@ -255,7 +262,7 @@ typedef struct {
-
- typedef struct {
- mgreg_t gregs [AMD64_NREG];
--#if defined(__APPLE__) || (defined(__linux__) && defined(__GLIBC__)) || defined(HOST_WIN32)
-+#if defined(MONO_HAVE_SIMD_REG)
- MonoContextSimdReg fregs [AMD64_XMM_NREG];
- #else
- double fregs [AMD64_XMM_NREG];