Re: [Mesa-dev] [PATCH v3] math: Import isinf and others to global namespace

2016-04-18 Thread Pierre Moreau
Thanks a lot Jose! If it hasn’t been done yet, could you please revert the commit you pushed that only affected Nouveau, since it’s now unnecessary, and furthermore, didn’t had the glibc check. Thanks! Pierre On 11:21 AM - Apr 18 2016, Jose Fonseca wrote: > Thanks. I've tweak the version check

Re: [Mesa-dev] [PATCH v3] math: Import isinf and others to global namespace

2016-04-18 Thread Jose Fonseca
Thanks. I've tweak the version check logic and pushed. Jose On 14/04/16 19:43, Pierre Moreau wrote: Starting from C++11, several math functions, like isinf, moved into the std namespace. Since cmath undefines those functions before redefining them inside the namespace, and glibc 2.23 defines

[Mesa-dev] [PATCH v3] math: Import isinf and others to global namespace

2016-04-14 Thread Pierre Moreau
Starting from C++11, several math functions, like isinf, moved into the std namespace. Since cmath undefines those functions before redefining them inside the namespace, and glibc 2.23 defines the C variants as macros, the C variants in global namespace are not accessible any longer. v2: Move the