From 40e1813af885c91b45fba8a304b9db1d09f02f22 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Fri, 23 Sep 2022 01:50:20 +0200 Subject: [PATCH] firefox: remove obsolete patch --- srcpkgs/firefox/patches/fix-i386-fdlibm.patch | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 srcpkgs/firefox/patches/fix-i386-fdlibm.patch diff --git a/srcpkgs/firefox/patches/fix-i386-fdlibm.patch b/srcpkgs/firefox/patches/fix-i386-fdlibm.patch deleted file mode 100644 index 831e5e03678..00000000000 --- a/srcpkgs/firefox/patches/fix-i386-fdlibm.patch +++ /dev/null @@ -1,18 +0,0 @@ -# error: typedef redefinition with different types ('__double_t' (aka 'double') vs 'long double') -# https://bugzilla.mozilla.org/show_bug.cgi?id=1729459 - ---- a/modules/fdlibm/src/math_private.h -+++ b/modules/fdlibm/src/math_private.h -@@ -30,7 +30,12 @@ - * Adapted from https://github.com/freebsd/freebsd-src/search?q=__double_t - */ - -+#if defined(__linux__) && defined(__i386__) -+// rely on glibc's double_t -+typedef long double __double_t; -+#else - typedef double __double_t; -+#endif - typedef __double_t double_t; - - /*