<div dir="ltr">Reviewed-by: Matheus Santana <<a href="mailto:embs@cin.ufpe.br">embs@cin.ufpe.br</a>><br></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Jun 19, 2018 at 9:28 PM, Peter Hutterer <span dir="ltr"><<a href="mailto:peter.hutterer@who-t.net" target="_blank">peter.hutterer@who-t.net</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">"/usr/include/math.h", line 381: error #20: identifier "_Float32" is undefined<br>
  # define _Mdouble_            _Float32<br>
<br>
Same for a few others. Since we don't actually need those anyway, we can just<br>
cast those to the some close-enough sizes. We don't have stdint.h in config.h<br>
and meson cannot have a custom #include line in the config object. So let's go<br>
with what does the job for now.<br>
<br>
Signed-off-by: Peter Hutterer <<a href="mailto:peter.hutterer@who-t.net">peter.hutterer@who-t.net</a>><br>
---<br>
The extra additions are probably caused by my update to F28, but something<br>
is wrong on the coverity side here and I'd rather #define random things <br>
away than not run coverity...<br>
<br>
 meson.build | 4 ++++<br>
 1 file changed, 4 insertions(+)<br>
<br>
diff --git a/meson.build b/meson.build<br>
index 54c5bbe0..b650bbde 100644<br>
--- a/meson.build<br>
+++ b/meson.build<br>
@@ -52,6 +52,10 @@ endif<br>
 # be removed when coverity fixes this again.<br>
 if get_option('coverity')<br>
        config_h.set('_Float128', '__uint128_t')<br>
+       config_h.set('_Float32', 'int')<br>
+       config_h.set('_Float32x', 'int')<br>
+       config_h.set('_Float64', 'long')<br>
+       config_h.set('_Float64x', 'long')<br>
 endif<br>
<br>
 # Dependencies<br>
<span class="HOEnZb"><font color="#888888">-- <br>
2.17.1<br>
<br>
______________________________<wbr>_________________<br>
wayland-devel mailing list<br>
<a href="mailto:wayland-devel@lists.freedesktop.org">wayland-devel@lists.<wbr>freedesktop.org</a><br>
<a href="https://lists.freedesktop.org/mailman/listinfo/wayland-devel" rel="noreferrer" target="_blank">https://lists.freedesktop.org/<wbr>mailman/listinfo/wayland-devel</a><br>
</font></span></blockquote></div><br></div>