nixpkgs/pkgs/os-specific
Tuomas Tynkkynen ba42683e9a libselinux: Fix ARM build failure
Avoid this warning (which is in turn an error via -Werror):
````
avc_internal.c: In function 'avc_netlink_receive':
avc_internal.c:105:25: error: cast increases required alignment of target type [-Werror=cast-align]
 struct nlmsghdr *nlh = (struct nlmsghdr *)buf;
                        ^
````

The code allocates abuffer with "__attribute__ ((aligned))",
then passes it via a 'char*' parameter, which is then finally cast,
causing the warning. So the code is ok but compiler is not smart
enough to see it.

It seems that -Wcast-align is a no-op on x86, so this shows up on ARM
only.
2016-10-18 23:54:29 +03:00
..
darwin Re-enable support for OS X 10.10 for darwin. 2016-10-13 11:09:37 -04:00
gnu Fix lots of fetchgit hashes (fallout from #15469) 2016-06-03 17:17:08 +03:00
linux libselinux: Fix ARM build failure 2016-10-18 23:54:29 +03:00
windows mingw: update 3.1.0 -> 4.0.6 2016-04-21 13:38:20 +02:00