2020-01-18 22:51:16 by Jonathan Perkin | Files touched by this commit (1836) |
Log message: *: Recursive revision bump for openssl 1.1.1. |
2020-01-12 21:20:50 by Ryo ONODERA | Files touched by this commit (574) |
Log message: *: Recursive revbump from devel/boost-libs |
2019-11-24 00:47:14 by Nia Alarie | Files touched by this commit (4) |
Log message: blender: Update to 2.81 Release notes: https://www.blender.org/download/releases/2-81/ |
2019-10-03 09:38:00 by Thomas Klausner | Files touched by this commit (2) | |
Log message: blender: remove patches that were removed from distinfo in 2.80 update |
2019-09-19 10:38:01 by Nia Alarie | Files touched by this commit (1) |
Log message: blender: format DESCR |
2019-09-19 01:44:11 by Nia Alarie | Files touched by this commit (1) |
Log message: blender: Remove file which is no longer needed |
2019-09-19 01:40:17 by Nia Alarie | Files touched by this commit (15) |
Log message: blender: Update to 2.80 Release notes: https://wiki.blender.org/wiki/Reference/Release_Notes/2.80 |
2019-08-30 20:44:47 by Nia Alarie | Files touched by this commit (1) |
Log message: blender: Needs only MesaLib and glu |
2019-08-22 14:23:56 by Ryo ONODERA | Files touched by this commit (678) |
Log message: Recursive revbump from boost-1.71.0 |
2019-07-03 12:21:08 by Mark Davies | Files touched by this commit (2) |
Log message: blender: fix build with gcc-9 GCC 9 started implementing the OpenMP 4.0 and later behavior. When not using default clause or when using default(shared), this makes no difference, but if using default(none), previously the choice was not specify the const qualified variables on the construct at all, or specify in firstprivate clause. In GCC 9 as well as for OpenMP 4.0 compliance, those variables need to be specified on constructs in which they are used, either in shared or in firstprivate clause. Specifying them in firstprivate clause is one way to achieve compatibility with both older GCC versions and GCC 9, another option is to drop the default(none) clause. This patch thus drops the default(none) clause. See https://gcc.gnu.org/gcc-9/porting_to.html#ompdatasharing patch from fedora. |