Use a #define instead of a typedef for double_t in fdlibm to prevent conflicting...
authorPeter Michael Green <plugwash@raspbian.org>
Thu, 16 Dec 2021 16:46:38 +0000 (16:46 +0000)
committerPeter Michael Green <plugwash@raspbian.org>
Thu, 16 Dec 2021 16:46:38 +0000 (16:46 +0000)
debian/changelog
modules/fdlibm/src/math_private.h

index 87a30c397c463eb3488b5bf516c6c97c0f86d71f..057dbef7353172b2f2d5945a8253671d68705bfa 100644 (file)
@@ -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 <plugwash@raspbian.org>  Tue, 30 Nov 2021 21:22:16 +0000
 
 thunderbird (1:91.3.2-1) unstable; urgency=medium
index 9e4dd25ca17a2b30c4ecf576eded2e3f7c938c58..e613522ce530cc6b83394a8171d6ce11e6677b07 100644 (file)
@@ -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: