diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2013-01-06 07:27:06 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-01-06 18:49:38 +0100 |
commit | 51e810844e0d469afce72503ece1a7b43a661e62 (patch) | |
tree | cd05b854f0a0e5131ef449c109c28dea96b594c4 /package/efl | |
parent | d3210cbac3cce63ae74fd2936849937b90c35cfb (diff) | |
download | buildroot-novena-51e810844e0d469afce72503ece1a7b43a661e62.tar.gz buildroot-novena-51e810844e0d469afce72503ece1a7b43a661e62.zip |
efl/libevas: fix build of XCB backend
Fixes:
http://autobuild.buildroot.net/results/b2107dce84bbc24d9afae3c7b53d972043f6d073/build-end.log
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/efl')
-rw-r--r-- | package/efl/libevas/libevas-fix-xcb-backend-typo.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/package/efl/libevas/libevas-fix-xcb-backend-typo.patch b/package/efl/libevas/libevas-fix-xcb-backend-typo.patch new file mode 100644 index 000000000..2531e75ee --- /dev/null +++ b/package/efl/libevas/libevas-fix-xcb-backend-typo.patch @@ -0,0 +1,19 @@ +Fix typo in the Evas XCB backend + +This typo prevents the XCB backend from building. + +Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> + +Index: b/src/modules/engines/software_x11/evas_xcb_outbuf.c +=================================================================== +--- a/src/modules/engines/software_x11/evas_xcb_outbuf.c ++++ b/src/modules/engines/software_x11/evas_xcb_outbuf.c +@@ -871,7 +871,7 @@ + } + else + { +- int pixelb = evas_software_xcb_output_buffer_depth(obr->xob) / 8; ++ int pixelb = evas_software_xcb_output_buffer_depth(obr->xcbob) / 8; + int run; + int dstjump; + |