diff options
author | Christoph Willing <chris.willing@linux.com> | 2020-05-25 14:14:06 +1000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2020-06-01 08:46:26 +0700 |
commit | 9cde26671ae79b4f435a7ea556b7ff313b583bc5 (patch) | |
tree | 80af910c05e78ae4d16ece6b681a8026cc7d35eb /multimedia/vlc | |
parent | 9f562d4eec2997ffbbbd7f1e9e3aa554dd9c0b13 (diff) | |
download | slackbuilds-9cde26671ae79b4f435a7ea556b7ff313b583bc5.tar.gz |
multimedia/vlc: Remove references to libaom
Signed-off-by: Christoph Willing <chris.willing@linux.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'multimedia/vlc')
-rw-r--r-- | multimedia/vlc/README | 9 | ||||
-rw-r--r-- | multimedia/vlc/vlc.SlackBuild | 4 |
2 files changed, 3 insertions, 10 deletions
diff --git a/multimedia/vlc/README b/multimedia/vlc/README index 0ac727b531..48a30411a4 100644 --- a/multimedia/vlc/README +++ b/multimedia/vlc/README @@ -34,12 +34,9 @@ security feature may be side stepped by building vlc with the RUNASROOT environment variable set e.g. RUNASROOT=yes sh vlc.SlackBuild -Some versions of the automatically deteced optional libaom package are -incompatible with this version of vlc (the build will fail with an -incompatible libaom). Such an incompatible libaom may be ignored -during building by setting the LIBAOM environmant variable to "no" -e.g. - LIBAOM=no sh vlc.SlackBuild +Playing of AV1 encoded video is supported when either of SBo's +multimedia/aom or libraries/dav1d packages is detected when vlc is built. +One of these is expected to become required in a future release. Please advise the maintainer to suggest support for any further options. diff --git a/multimedia/vlc/vlc.SlackBuild b/multimedia/vlc/vlc.SlackBuild index 580776308f..ef3ee03569 100644 --- a/multimedia/vlc/vlc.SlackBuild +++ b/multimedia/vlc/vlc.SlackBuild @@ -105,9 +105,6 @@ fi # Enable vlc to be run as root runasroot=""; [ "${RUNASROOT:-no}" != "no" ] && runasroot="--enable-run-as-root" -# Disable use of libaom -libaom=""; [ "${LIBAOM:-yes}" = "no" ] && libaom="--disable-aom" - autoreconf -fiv chown -R root:root . @@ -132,7 +129,6 @@ LDFLAGS="$SLKLDFLAGS" \ $wayland \ $opencv \ $runasroot \ - $libaom \ --enable-merge-ffmpeg \ --enable-libva=no \ --with-kde-solid=no \ |