index : packages | |
Archlinux32 package modifications | gitolite user |
summaryrefslogtreecommitdiff |
author | Andreas Baumann <mail@andreasbaumann.cc> | 2023-04-08 21:31:53 +0200 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2023-04-08 21:31:53 +0200 |
commit | ac911d8af7db73d9e83cf5e045becc2f0ac99dc7 (patch) | |
tree | 5c01bb4c5e25b0907017bd7956bd1ee24a3b813a /extra/firefox/firefox-111.0.1-fdlibm.patch | |
parent | ee19a1895403d52a28409aa6a3045a130dcea40e (diff) |
-rw-r--r-- | extra/firefox/firefox-111.0.1-fdlibm.patch | 13 |
diff --git a/extra/firefox/firefox-111.0.1-fdlibm.patch b/extra/firefox/firefox-111.0.1-fdlibm.patch index 4f600df4..f2c15a2b 100644 --- a/extra/firefox/firefox-111.0.1-fdlibm.patch +++ b/extra/firefox/firefox-111.0.1-fdlibm.patch @@ -1,18 +1,21 @@ diff -rauN firefox-111.0.1/modules/fdlibm/src/math_private.h firefox-111.0.1-fdlibm-patch/modules/fdlibm/src/math_private.h --- firefox-111.0.1/modules/fdlibm/src/math_private.h 2023-03-21 14:16:09.000000000 +0100 -+++ firefox-111.0.1-fdlibm-patch/modules/fdlibm/src/math_private.h 2023-04-07 15:42:21.149010898 +0200 -@@ -30,9 +30,13 @@ ++++ firefox-111.0.1-fdlibm-patch/modules/fdlibm/src/math_private.h 2023-04-08 16:50:07.828564320 +0200 +@@ -30,9 +30,17 @@ * Adapted from https://github.com/freebsd/freebsd-src/search?q=__double_t */ +#if defined __FLT_EVAL_METHOD__ && (__FLT_EVAL_METHOD__ == 2) -+typedef long double __double_t; ++typedef long double __double_t; +#else typedef double __double_t; +#endif typedef __double_t double_t; --typedef float __float_t; -+/*typedef float __float_t;*/ ++#if defined __FLT_EVAL_METHOD__ && (__FLT_EVAL_METHOD__ == 2) ++typedef long double __float_t; ++#else + typedef float __float_t; ++#endif /* * The original fdlibm code used statements like: |