From: Peter Michael Green Date: Thu, 16 Dec 2021 16:46:38 +0000 (+0000) Subject: Use a #define instead of a typedef for double_t in fdlibm to prevent conflicting... X-Git-Tag: archive/raspbian/1%91.3.2-1+rpi1~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=10aa006b9ea2d3980ee1e37aa18a8c8910ee2e39;p=thunderbird.git Use a #define instead of a typedef for double_t in fdlibm to prevent conflicting definitions error. --- diff --git a/debian/changelog b/debian/changelog index 87a30c397c..057dbef735 100644 --- a/debian/changelog +++ b/debian/changelog @@ -29,6 +29,10 @@ thunderbird (1:91.3.2-1+rpi1) bookworm-staging; urgency=medium (changelog says this was already done, but it got lost somewhere along the way). + [changes introduced in 1:91.3.2-1+rpi1 by Peter Michael Green] + * Use a #define instead of a typedef for double_t in fdlibm to prevent conflicting + definitions error. + -- Peter Michael Green Tue, 30 Nov 2021 21:22:16 +0000 thunderbird (1:91.3.2-1) unstable; urgency=medium diff --git a/modules/fdlibm/src/math_private.h b/modules/fdlibm/src/math_private.h index 9e4dd25ca1..e613522ce5 100644 --- a/modules/fdlibm/src/math_private.h +++ b/modules/fdlibm/src/math_private.h @@ -35,7 +35,7 @@ typedef double __double_t; #else typedef long double __double_t; #endif -typedef __double_t double_t; +#define double_t __double_t typedef float __float_t; /* * The original fdlibm code used statements like: