grobian 15/03/01 09:15:22 Added: csu-85-arm-availability.patch Removed: csu-85-darwin8.patch Log: Take simpler approach to fix Availability.h header problem by Michael Weiser, bug #538602 (Portage version: 2.2.14-prefix/cvs/SunOS i386, signed Manifest commit with key 0x5F75F607C5C74E89)
Revision Changes Path 1.1 sys-libs/csu/files/csu-85-arm-availability.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/csu/files/csu-85-arm-availability.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/csu/files/csu-85-arm-availability.patch?rev=1.1&content-type=text/plain Index: csu-85-arm-availability.patch =================================================================== Guard inclusion of Availability.h so that it only happens on arm where it's actuallty used so it doesn't cause failures on old OS X where Availability.h doesn't exist yet. Michael Weiser <[email protected]> --- Csu-85/start.s.orig 2013-10-09 01:11:47.000000000 +0200 +++ Csu-85/start.s 2015-02-11 20:34:04.000000000 +0100 @@ -22,7 +22,9 @@ * @APPLE_LICENSE_HEADER_END@ */ +#ifdef __arm__ #include <Availability.h> +#endif #if __ppc__ && __DYNAMIC__ //
