[vlc-commits] [Git][videolan/vlc][master] contrib: vpx: restrict architectures
Jean-Baptiste Kempf (@jbk)
gitlab at videolan.org
Sun Oct 1 13:28:47 UTC 2023
Jean-Baptiste Kempf pushed to branch master at VideoLAN / VLC
Commits:
293601d2 by Rémi Denis-Courmont at 2023-10-01T12:30:43+00:00
contrib: vpx: restrict architectures
VPX has an exclusive list of supported instruction sets.
This follows it, unblocking contrib builds on other targets.
- - - - -
1 changed file:
- contrib/src/vpx/rules.mak
Changes:
=====================================
contrib/src/vpx/rules.mak
=====================================
@@ -3,7 +3,9 @@
VPX_VERSION := 1.13.1
VPX_URL := $(GITHUB)/webmproject/libvpx/archive/v${VPX_VERSION}.tar.gz
+ifneq ($(filter arm aarch64 i386 loongarch64 mipsel mips64el ppc64le x86_64, $(ARCH)),)
PKGS += vpx
+endif
ifeq ($(call need_pkg,"vpx >= 1.5.0"),)
PKGS_FOUND += vpx
endif
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/293601d23044498ae6fd3d06020e9b2db07d326f
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/293601d23044498ae6fd3d06020e9b2db07d326f
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
More information about the vlc-commits
mailing list