[Openchrome-users] [openChrome] #357: release new version (x11-drivers/xf86-video-openchrome-0.2.904 fails to build with >=libdrm-2.4.17)
OpenChrome Trac
trac
Sun Feb 14 04:26:50 PST 2010
#357: release new version (x11-drivers/xf86-video-openchrome-0.2.904 fails to
build with >=libdrm-2.4.17)
-------------------+--------------------------------------------------------
Reporter: pva | Owner: somebody
Type: defect | Status: new
Priority: minor | Component: 3d
Version: | Keywords:
Blocking: | Blockedby:
-------------------+--------------------------------------------------------
Comment(by gang65):
The best solution is replace uint{32,64}_t to __u{32,64} as it was in
previous libdrm revision.
I should be replaced to:
{{{
struct drm_mode_crtc_page_flip {
__u32 crtc_id;
__u32 fb_id;
__u32 flags;
__u32 reserved;
__u64 user_data;
};
}}}
Now in libdrm-2.4.17 is:
{{{
struct drm_mode_crtc_page_flip {
uint32_t crtc_id;
uint32_t fb_id;
uint32_t flags;
uint32_t reserved;
uint64_t user_data;
};
}}}
--
Ticket URL: <http://www.openchrome.org/trac/ticket/357#comment:9>
openChrome <http://www.openchrome.org/>
The openChrome project
More information about the Openchrome-users
mailing list