aboutsummaryrefslogtreecommitdiffstats
path: root/emulators/rpcs3
diff options
context:
space:
mode:
authorjbeich <jbeich@FreeBSD.org>2018-10-01 22:19:13 +0800
committerjbeich <jbeich@FreeBSD.org>2018-10-01 22:19:13 +0800
commit7d812d04e2eca4de698e03b2798d29dab53b4bf5 (patch)
treebd689d39969ea80c890756b8b887e8c71e29ec0e /emulators/rpcs3
parent362edbe9d132c1de28ab5c26e149a0b3076828df (diff)
downloadfreebsd-ports-gnome-7d812d04e2eca4de698e03b2798d29dab53b4bf5.tar.gz
freebsd-ports-gnome-7d812d04e2eca4de698e03b2798d29dab53b4bf5.tar.zst
freebsd-ports-gnome-7d812d04e2eca4de698e03b2798d29dab53b4bf5.zip
emulators/rpcs3: drop FreeBSD 11.1 support after EOL
Diffstat (limited to 'emulators/rpcs3')
-rw-r--r--emulators/rpcs3/files/patch-libc++35
1 files changed, 0 insertions, 35 deletions
diff --git a/emulators/rpcs3/files/patch-libc++ b/emulators/rpcs3/files/patch-libc++
deleted file mode 100644
index 3f7380095681..000000000000
--- a/emulators/rpcs3/files/patch-libc++
+++ /dev/null
@@ -1,35 +0,0 @@
-Add missing bits from later libc++ versions. Remove after FreeBSD 11.1 EOL.
-
---- Utilities/types.h.orig 2018-09-03 20:00:36 UTC
-+++ Utilities/types.h
-@@ -83,6 +83,30 @@ using steady_clock = std::conditional<
- std::chrono::high_resolution_clock::is_steady,
- std::chrono::high_resolution_clock, std::chrono::steady_clock>::type;
-
-+#ifdef _LIBCPP_VERSION
-+namespace std
-+{
-+# if _LIBCPP_VERSION < 5000
-+#define GSL_USE_STD_BYTE 1
-+enum class byte : unsigned char {};
-+
-+template <class _Integer>
-+ constexpr typename enable_if<is_integral_v<_Integer>, _Integer>::type
-+ to_integer(byte __b) noexcept { return static_cast<_Integer>(__b); }
-+# endif
-+# if _LIBCPP_VERSION < 6000
-+template <class _Fn, class... _Args>
-+struct _LIBCPP_TEMPLATE_VIS invoke_result
-+ : __invoke_of<_Fn, _Args...>
-+{
-+};
-+
-+template <class _Fn, class... _Args>
-+using invoke_result_t = typename invoke_result<_Fn, _Args...>::type;
-+# endif
-+} // namespace std
-+#endif
-+
- namespace gsl
- {
- using std::byte;