1b807c0bbe
CELT is an ultra-low-delay audio codec designed for high-quality communications. Its potential uses include video-conferencing and network music performance. The code is still in early stage, so it may be broken from time to time. NOTE: The API is not frozen yet, so it is different from one version to another.
14 lines
316 B
Makefile
14 lines
316 B
Makefile
# $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
|