![]() ![]() | ![]() |
File: [cvs.NetBSD.org] / pkgsrc / graphics / png / hacks.mk (download)
Revision 1.5, Sat Nov 2 22:38:01 2019 UTC (14 months, 3 weeks ago) by rillig
graphics: align variable assignments pkglint -Wall -F --only aligned --only indent -r No manual corrections. |
# $NetBSD: hacks.mk,v 1.5 2019/11/02 22:38:01 rillig Exp $ .if !defined(PNG_HACKS_MK) PNG_HACKS_MK= defined .include "../../mk/compiler.mk" ### gcc-4.5.3 in NetBSD/arm 6.1 causes SEGV in some png functions. ### -O works around, and there is a report that -O2 -fno-ipa-sra is enough. ### See PR/47798 for details. .if !empty(MACHINE_PLATFORM:MNetBSD-*-arm) && !empty(CC_VERSION:Mgcc-4.5.*) # XXX: is there any good way to replace the default -O2 with multiple args? #PKG_HACKS+= optimisation #BUILDLINK_TRANSFORM+= opt:-O[2-9]*:-O2 -fno-ipa-sra CFLAGS+= -O2 -fno-ipa-sra .endif .endif # PNG_HACKS_MK