diff options
author | wiedi <wiedi@pkgsrc.org> | 2016-11-24 02:23:41 +0000 |
---|---|---|
committer | wiedi <wiedi@pkgsrc.org> | 2016-11-24 02:23:41 +0000 |
commit | f1ce3ed8ef3b1e36d62fd6efee36efd51a35d84a (patch) | |
tree | 888fccf6d2404621b347826f37df75eabced9851 /audio | |
parent | d7276fa6fa12a38cb9ee3445814a0255ead540f9 (diff) | |
download | pkgsrc-f1ce3ed8ef3b1e36d62fd6efee36efd51a35d84a.tar.gz |
fix int types on SunOS
Diffstat (limited to 'audio')
-rw-r--r-- | audio/aubio/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/audio/aubio/Makefile b/audio/aubio/Makefile index 7e615e63ee9..4dd90c09ef0 100644 --- a/audio/aubio/Makefile +++ b/audio/aubio/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2016/07/09 13:03:30 wiz Exp $ +# $NetBSD: Makefile,v 1.10 2016/11/24 02:23:41 wiedi Exp $ DISTNAME= aubio-0.3.2 PKGREVISION= 2 @@ -21,6 +21,8 @@ PY_PATCHPLIST= yes REPLACE_PYTHON= python/aubiocut python/aubiopitch PYTHON_VERSIONS_INCOMPATIBLE= 34 35 # not yet ported as of 0.3.2 +CPPFLAGS.SunOS+= -Du_int8_t=uint8_t -Du_int16_t=uint16_t -Du_int32_t=uint32_t -Du_int64_t=uint64_t + .include "options.mk" .include "../../audio/libsamplerate/buildlink3.mk" |