blob: c11c1b19443e3571ffa55fbf38f99832970e97be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# $NetBSD: hacks.mk,v 1.1 2006/01/02 12:51:22 jmmv Exp $
.if !defined(LIBVISUAL_HACKS_MK)
LIBVISUAL_HACKS_MK= # defined
# [ Mon Jan 2 13:49:14 CET 2006 : jmmv ]
# -funroll-loops breaks the inlined MMX code in libvisual/lv_video_mmx.c.
# It adds an immediate value to a movd instruction that does not let it
# compile.
BUILDLINK_TRANSFORM+= rm:-funroll-loops
.endif
|