blob: 61b061279a80015cbe7aa24a47d5ae0501bfbb42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $NetBSD: hacks.mk,v 1.1.1.1 2008/12/03 00:44:49 bjs Exp $
#
.if !defined(CELT_HACKS_MK)
CELT_HACKS_MK= # empty
. include "../../mk/compiler.mk"
###
### XXX Remove this if unneeded in the future.
###
. if !empty(CC_VERSION:Mgcc-[34]*)
CFLAGS+= -fno-strict-aliasing
PKG_HACKS+= no-strict-aliasing
. endif
.endif
|