diff options
author | Ludovic Courtès <ludo@gnu.org> | 2018-07-28 11:25:27 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-07-28 15:08:07 +0200 |
commit | c95c9032b4be9952ae0c848e4df865347b9bf08c (patch) | |
tree | 868006d2149a0c210d591ec28cc0ea9222a969c8 /gnu/packages/video.scm | |
parent | 5193ae64ca0c3322364163d356a6d69173c3d233 (diff) | |
download | guix-c95c9032b4be9952ae0c848e4df865347b9bf08c.tar.gz |
gnu: x265: Fix compilation on ARMv7.
* gnu/packages/patches/x265-arm-asm-primitives.patch: New file. * gnu/packages/video.scm (x265)[sources](patches): Add it. * gnu/local.mk (dist_patch_DATA): Add it.
Diffstat (limited to 'gnu/packages/video.scm')
-rw-r--r-- | gnu/packages/video.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 24bf5b4ed9..930f83a3e5 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -397,7 +397,8 @@ and creating Matroska files from other media files (@code{mkvmerge}).") (sha256 (base32 "0qx8mavwdzdpkkby7n29i9av7zsnklavacwfz537mf62q2pzjnbf")) - (patches (search-patches "x265-fix-ppc64le-build.patch")) + (patches (search-patches "x265-fix-ppc64le-build.patch" + "x265-arm-asm-primitives.patch")) (modules '((guix build utils))) (snippet '(begin (delete-file-recursively "source/compat/getopt") |