[packages/gd] - fix building with libvpx 1.4 (libvpx.so.2)

baggins baggins at pld-linux.org
Sat May 23 21:32:20 CEST 2015


commit 6d49f9795f6321c0ec9feba1cd6435f1011313ab
Author: Jan Rękorajski <baggins at pld-linux.org>
Date:   Sat May 23 21:31:50 2015 +0200

    - fix building with libvpx 1.4 (libvpx.so.2)

 gd.spec       |  2 ++
 libvpx2.patch | 24 ++++++++++++++++++++++++
 2 files changed, 26 insertions(+)
---
diff --git a/gd.spec b/gd.spec
index 0c6ae0c..7a538c9 100644
--- a/gd.spec
+++ b/gd.spec
@@ -18,6 +18,7 @@ Source0:	https://bitbucket.org/libgd/gd-libgd/downloads/libgd-%{version}.tar.xz
 Patch0:		%{name}-fontpath.patch
 Patch1:		%{name}-2.0.33-BoxBound.patch
 Patch2:		%{name}-loop.patch
+Patch3:		libvpx2.patch
 URL:		http://www.libgd.org/
 BuildRequires:	autoconf >= 2.54
 BuildRequires:	automake
@@ -154,6 +155,7 @@ para uso pelos programas que usam a libgd.
 %patch0 -p1
 %patch1 -p1
 %patch2 -p1
+%patch3 -p1
 
 # hack to avoid inclusion of -s in --ldflags
 %{__sed} -i -e 's, at LDFLAGS@,,g' config/gdlib-config.in
diff --git a/libvpx2.patch b/libvpx2.patch
new file mode 100644
index 0000000..50e1afd
--- /dev/null
+++ b/libvpx2.patch
@@ -0,0 +1,24 @@
+--- libgd-2.1.1/src/webpimg.c.orig	2015-05-23 21:28:59.036681960 +0200
++++ libgd-2.1.1/src/webpimg.c	2015-05-23 21:29:28.300382040 +0200
+@@ -711,14 +711,14 @@
+     codec_ctl(&enc, VP8E_SET_STATIC_THRESHOLD, 0);
+     codec_ctl(&enc, VP8E_SET_TOKEN_PARTITIONS, 2);
+ 
+-    vpx_img_wrap(&img, IMG_FMT_I420,
++    vpx_img_wrap(&img, VPX_IMG_FMT_I420,
+                  y_width, y_height, 16, (uint8*)(Y));
+-    img.planes[PLANE_Y] = (uint8*)(Y);
+-    img.planes[PLANE_U] = (uint8*)(U);
+-    img.planes[PLANE_V] = (uint8*)(V);
+-    img.stride[PLANE_Y] = y_stride;
+-    img.stride[PLANE_U] = uv_stride;
+-    img.stride[PLANE_V] = uv_stride;
++    img.planes[VPX_PLANE_Y] = (uint8*)(Y);
++    img.planes[VPX_PLANE_U] = (uint8*)(U);
++    img.planes[VPX_PLANE_V] = (uint8*)(V);
++    img.stride[VPX_PLANE_Y] = y_stride;
++    img.stride[VPX_PLANE_U] = uv_stride;
++    img.stride[VPX_PLANE_V] = uv_stride;
+ 
+     res = vpx_codec_encode(&enc, &img, 0, 1, 0, VPX_DL_BEST_QUALITY);
+ 
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/gd.git/commitdiff/6d49f9795f6321c0ec9feba1cd6435f1011313ab



More information about the pld-cvs-commit mailing list