]> code.ossystems Code Review - openembedded-core.git/commit
libxxf86dga: fix compilation with x32 toolchain
authorNitin A Kamble <nitin.a.kamble@intel.com>
Wed, 4 Jan 2012 22:28:43 +0000 (14:28 -0800)
committerSaul Wold <sgw@linux.intel.com>
Tue, 10 Jan 2012 05:51:49 +0000 (21:51 -0800)
commit644aaa87a0e161f8a37267f13d4a18f6dfcd9a4f
treea288ae6fa192c19ddb745be2aed4e9d22bfe84d7
parentfff18970706913e7fd7f4a119d798dddb44b388a
libxxf86dga: fix compilation with x32 toolchain

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.

Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
meta/recipes-graphics/xorg-lib/libxxf86dga/libxxf86dga-1.1.2_fix_for_x32.patch [new file with mode: 0644]
meta/recipes-graphics/xorg-lib/libxxf86dga_1.1.2.bb