summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/xorg-lib/libxxf86dga
Commit message (Collapse)AuthorAgeFilesLines
* libxxf86dga: Upgrade to 1.1.3Saul Wold2012-03-211-4/+4
| | | | | | | (From OE-Core rev: 99d3d7c461e3b19ea807dd7aabfcd4c239b531a6) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libxxf86dga: fix compilation with x32 toolchainNitin A Kamble2012-01-101-0/+30
Fix type conversion for x32. For x32 the off_t is 64bit and pointers are 32bit. so the conversion of pointer to off_t was resulting into this error: | XF86DGA2.c:931:24: error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast] | cc1: some warnings being treated as errors | | make[2]: *** [XF86DGA2.lo] Error 1 Fixed it by typecasting pointer into unsigned long 1st and then again typecasting unsigned long to off_t. (From OE-Core rev: 644aaa87a0e161f8a37267f13d4a18f6dfcd9a4f) Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>