aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Kubaj <pkubaj@FreeBSD.org>2023-02-12 18:04:12 +0000
committerPiotr Kubaj <pkubaj@FreeBSD.org>2023-02-12 18:06:51 +0000
commitb9b118c5d292b7030dea9f70ed7e7c16e8751f04 (patch)
tree270e9be350d81e165f075e5a84491c72248d9c57
parent85f7d7a34bad0da5785708b8c7932375dc3cf060 (diff)
downloadports-b9b118c5d292b7030dea9f70ed7e7c16e8751f04.tar.gz
ports-b9b118c5d292b7030dea9f70ed7e7c16e8751f04.zip
graphics/bgfx: Revert "fix build on powerpc64* and probably riscv64"
Wrong cherry-pick, this port doesn't exist in 2023Q1. Reported by: Freshports This reverts commit 85f7d7a34bad0da5785708b8c7932375dc3cf060.
-rw-r--r--graphics/bgfx/files/patch-bimg_3rdparty_nvtt_nvcore_debug.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/graphics/bgfx/files/patch-bimg_3rdparty_nvtt_nvcore_debug.h b/graphics/bgfx/files/patch-bimg_3rdparty_nvtt_nvcore_debug.h
deleted file mode 100644
index b017509dac6f..000000000000
--- a/graphics/bgfx/files/patch-bimg_3rdparty_nvtt_nvcore_debug.h
+++ /dev/null
@@ -1,11 +0,0 @@
---- bimg/3rdparty/nvtt/nvcore/debug.h.orig 2023-02-07 16:06:32 UTC
-+++ bimg/3rdparty/nvtt/nvcore/debug.h
-@@ -165,7 +165,7 @@ namespace nv
- namespace nv
- {
- inline bool isValidPtr(const void * ptr) {
-- #if NV_CPU_X86_64 || NV_CPU_AARCH64
-+ #if defined(__LP64__)
- if (ptr == NULL) return true;
- if (reinterpret_cast<uint64>(ptr) < 0x10000ULL) return false;
- if (reinterpret_cast<uint64>(ptr) >= 0x000007FFFFFEFFFFULL) return false;