diff options
author | danilo <danilo@FreeBSD.org> | 2014-03-29 22:07:59 +0800 |
---|---|---|
committer | danilo <danilo@FreeBSD.org> | 2014-03-29 22:07:59 +0800 |
commit | e1fc1856b37c6f42c2dad7b77f041b6c50972284 (patch) | |
tree | 4952aea83a5dcf47ecc55e678dd367e5e4fbb0fb /audio | |
parent | 9427532a86aad51d6c7d380db94f441a7cfb56e1 (diff) | |
download | freebsd-ports-gnome-e1fc1856b37c6f42c2dad7b77f041b6c50972284.tar.gz freebsd-ports-gnome-e1fc1856b37c6f42c2dad7b77f041b6c50972284.tar.zst freebsd-ports-gnome-e1fc1856b37c6f42c2dad7b77f041b6c50972284.zip |
- Fix build with newer clang
- Convert USE_BZIP2 to USES
Diffstat (limited to 'audio')
-rw-r--r-- | audio/whysynth/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/audio/whysynth/Makefile b/audio/whysynth/Makefile index 7099a751d979..24a6e28ee6c2 100644 --- a/audio/whysynth/Makefile +++ b/audio/whysynth/Makefile @@ -21,12 +21,14 @@ LIB_DEPENDS= libdssialsacompat.so:${PORTSDIR}/audio/libdssialsacompat \ libfftw3.so:${PORTSDIR}/math/fftw3 \ libfftw3f.so:${PORTSDIR}/math/fftw3-float -USES= gmake pkgconfig -USE_BZIP2= yes +USES= gmake pkgconfig tar:bzip2 USE_GNOME= gtk20 USE_AUTOTOOLS= libtool CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib +post-patch: + @${REINPLACE_CMD} -e 's|-finline-limit=5000||g' ${WRKSRC}/configure + .include <bsd.port.mk> |