diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2020-04-19 00:18:39 +0000 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2020-04-19 00:18:39 +0000 |
commit | ac41b63f12ac2182f836145d3fdc61aabfeb415e (patch) | |
tree | 98136b57b1905ca885f8a5f0fc9c6fd8166058c1 /audio/sonic-visualiser | |
parent | multimedia/obs-streamfx: Backport the pull request attempting to unbreak the ... (diff) |
audio/sonic-visualiser: Fix the build error
qt5-core-5.14.2 has QTimer::start() marked as deprecated, but -Werror promoted this warning to error.
PR: 236000
Reported by: Robert Cina <transitive@gmail.com>
Notes
Notes:
svn path=/head/; revision=532053
Diffstat (limited to 'audio/sonic-visualiser')
-rw-r--r-- | audio/sonic-visualiser/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/audio/sonic-visualiser/Makefile b/audio/sonic-visualiser/Makefile index 2be98ec5ab98..e2a4380e4680 100644 --- a/audio/sonic-visualiser/Makefile +++ b/audio/sonic-visualiser/Makefile @@ -68,6 +68,8 @@ PULSEAUDIO_LIB_DEPENDS= libpulse.so:audio/pulseaudio post-patch: # remove the bundled vamp-plugin-sdk to avoid possible confusion @${RM} -r ${WRKSRC}/vamp-plugin-sdk + # workaround for https://sourceforge.net/p/sv1/bugs/280/, also see Bug#236000 + @${FIND} ${WRKSRC} -name "*.pro" -o -name "*.pri" | ${XARGS} ${REINPLACE_CMD} -e 's|-Werror| |' do-install: .for f in sonic-visualiser piper-vamp-simple-server piper-convert checker/vamp-plugin-load-checker |