]> git.pld-linux.org Git - packages/libvpx.git/commitdiff
disable vp9 encoder on ac-sparc
authorElan Ruusamäe <glen@delfi.ee>
Fri, 12 Dec 2014 22:58:23 +0000 (00:58 +0200)
committerElan Ruusamäe <glen@delfi.ee>
Fri, 12 Dec 2014 22:58:23 +0000 (00:58 +0200)
libvpx.spec

index 869a56bb15fa40c7e68bd2701fb26ad7ef075fa5..2b1cc0794a2ce7eddacab7cbbcb5b76b9e6a17e1 100644 (file)
@@ -4,6 +4,7 @@
 %bcond_without doc     # don't build doc
 %bcond_with    tests   # build tests (not useful, creates libgtest.a)
 %bcond_without ssse3   # use SSSE3 instructions (Intel since Core2, Via Nano)
+%bcond_without vp9_encoder     # vp9 encoder
 
 %ifnarch %{ix86} %{x8664}
 %undefine      with_asm
 %undefine      with_ssse3
 %endif
 
+# old gcc gets stuck on ac
+%ifarch sparc
+%undefine      with_vp9_encoder
+%endif
+
 Summary:       VP8, a high-quality video codec
 Summary(pl.UTF-8):     VP8 - kodek obrazu wysokiej jakości
 Name:          libvpx
@@ -106,6 +112,7 @@ CFLAGS="%{rpmcflags} %{rpmcppflags}" \
        --%{!?with_doc:dis}%{?with_doc:en}able-docs \
        --%{!?with_doc:dis}%{?with_doc:en}able-install-docs \
        --enable-vp8 \
+       %{!?with_vp9_encoder:--disable-vp9-encoder} \
        --enable-postproc \
        --enable-runtime-cpu-detect
 
@@ -147,7 +154,7 @@ rm -rf $RPM_BUILD_ROOT
 %defattr(644,root,root,755)
 %doc AUTHORS CHANGELOG LICENSE PATENTS README
 %attr(755,root,root) %{_bindir}/vp8_scalable_patterns
-%attr(755,root,root) %{_bindir}/vp9_spatial_scalable_encoder
+%{?with_vp9_encoder:%attr(755,root,root) %{_bindir}/vp9_spatial_scalable_encoder}
 %attr(755,root,root) %{_bindir}/vpxdec
 %attr(755,root,root) %{_bindir}/vpxenc
 %attr(755,root,root) %{_libdir}/libvpx.so.*.*.*
This page took 0.126237 seconds and 4 git commands to generate.