diff options
author | B. Watson <urchlay@slackware.uk> | 2022-12-24 13:52:37 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-12-31 09:14:46 +0700 |
commit | 55e546e45195b23a8a8f1915d186cc561790ba2d (patch) | |
tree | 046d37118f2d19d580a238dbed37633b74bbdb00 /audio/xmms2 | |
parent | 141fc676bc50a3f33131a0fcee895062776579ba (diff) |
audio/xmms2: Fix build conflict with cunit.
Signed-off-by: B. Watson <urchlay@slackware.uk>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'audio/xmms2')
-rw-r--r-- | audio/xmms2/xmms2.SlackBuild | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/audio/xmms2/xmms2.SlackBuild b/audio/xmms2/xmms2.SlackBuild index b0c205641b18..8e65282b47f0 100644 --- a/audio/xmms2/xmms2.SlackBuild +++ b/audio/xmms2/xmms2.SlackBuild @@ -68,6 +68,8 @@ export CCFLAGS="$SLKCFLAGS" export CXXFLAGS="$SLKCFLAGS" # some plugins are disabled because newer ffmpegs aren't supported yet +# 20221224 bkw: added tests to --without-optionals. it causes the build +# to fail if cunit is installed. ./waf --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --with-pkgconfigdir=/usr/lib${LIBDIRSUFFIX}/pkgconfig \ @@ -75,7 +77,7 @@ export CXXFLAGS="$SLKCFLAGS" --without-ldconfig \ --without-plugins=apefile,flv,tta \ --with-perl-archdir=/usr/lib$LIBDIRSUFFIX/perl5 \ - --without-optionals=python \ + --without-optionals=python,tests \ -p configure ./waf build |