aboutsummaryrefslogtreecommitdiff
path: root/www/firefox-esr
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2020-10-17 14:55:04 +0000
committerRene Ladan <rene@FreeBSD.org>2020-10-17 14:55:04 +0000
commit27180863ab5f9c0f4ed0981e3a89c5db7bf9f092 (patch)
tree0aa45016a26c471d3902d60e2f836e9a22cab3b4 /www/firefox-esr
parentfa7f1e280132bddf68bef5f90fc1c69eab0d5466 (diff)
downloadports-27180863ab5f9c0f4ed0981e3a89c5db7bf9f092.tar.gz
ports-27180863ab5f9c0f4ed0981e3a89c5db7bf9f092.zip
www/firefox-esr: remove a patch only useful on FreeBSD 11.3
Phabricator: D26646
Notes
Notes: svn path=/head/; revision=552591
Diffstat (limited to 'www/firefox-esr')
-rw-r--r--www/firefox-esr/files/patch-freebsd11.360
1 files changed, 0 insertions, 60 deletions
diff --git a/www/firefox-esr/files/patch-freebsd11.3 b/www/firefox-esr/files/patch-freebsd11.3
deleted file mode 100644
index c47b782b285c..000000000000
--- a/www/firefox-esr/files/patch-freebsd11.3
+++ /dev/null
@@ -1,60 +0,0 @@
-Drop after FreeBSD 11.3 EOL around 2020-09-20.
-https://svnweb.freebsd.org/changeset/base/351766
-
-mozglue/baseprofiler/core/shared-libraries-linux.cc:374:34: error: use of undeclared
- identifier 'NT_GNU_BUILD_ID'
- if (note_header->n_type == NT_GNU_BUILD_ID) break;
- ^
-In file included from Unified_cpp_mozglue_baseprofiler0.cpp:137:
-mozglue/baseprofiler/lul/LulElf.cpp:762:32: error: use of undeclared identifier
- 'NT_GNU_BUILD_ID'
- if (note_header->n_type == NT_GNU_BUILD_ID) break;
- ^
-In file included from Unified_cpp_tools_profiler1.cpp:38:
-tools/profiler/lul/LulElf.cpp:776:32: error: use of undeclared identifier
- 'NT_GNU_BUILD_ID'
- if (note_header->n_type == NT_GNU_BUILD_ID) break;
- ^
-
---- mozglue/baseprofiler/core/shared-libraries-linux.cc.orig 2020-06-25 17:04:48 UTC
-+++ mozglue/baseprofiler/core/shared-libraries-linux.cc
-@@ -50,6 +50,11 @@ extern "C" MOZ_EXPORT __attribute__((weak)) int dl_ite
- # define ElfW(type) Elf_##type
- #endif
-
-+#if defined(GP_OS_freebsd) && !defined(NT_GNU_BUILD_ID)
-+// FreeBSD < 11.4 doesn't define NT_GNU_BUILD_ID
-+# define NT_GNU_BUILD_ID 3
-+#endif
-+
- // ----------------------------------------------------------------------------
- // Starting imports from toolkit/crashreporter/google-breakpad/, as needed by
- // this file when moved to mozglue.
---- mozglue/baseprofiler/lul/LulElf.cpp.orig 2020-06-25 17:04:48 UTC
-+++ mozglue/baseprofiler/lul/LulElf.cpp
-@@ -79,6 +79,11 @@
- # define EM_AARCH64 183
- #endif
-
-+#if defined(GP_OS_freebsd) && !defined(NT_GNU_BUILD_ID)
-+// FreeBSD < 11.4 doesn't define NT_GNU_BUILD_ID
-+# define NT_GNU_BUILD_ID 3
-+#endif
-+
- // This namespace contains helper functions.
- namespace {
-
---- tools/profiler/lul/LulElf.cpp.orig 2020-06-25 17:05:05 UTC
-+++ tools/profiler/lul/LulElf.cpp
-@@ -84,6 +84,11 @@
- # define EM_AARCH64 183
- #endif
-
-+#if defined(GP_OS_freebsd) && !defined(NT_GNU_BUILD_ID)
-+// FreeBSD < 11.4 doesn't define NT_GNU_BUILD_ID
-+# define NT_GNU_BUILD_ID 3
-+#endif
-+
- // This namespace contains helper functions.
- namespace {
-