[MPlayer-users] Solution to the compilation problems of Xine and MPlayer on kernel-2.4 systems.
Thorsten Küfer
thorsten.kuefer at gmx.de
Fri Jan 21 20:58:29 CET 2005
Solution to the compilation problems of Xine and MPlayer on kernel-2.4
systems.
It seems that some things got backported from kernel 2.6 to the 2.4
kernel tree after 2.4.24 (don't know exactly) so that ldt_keeper.c does
not compile any more.
The kernel version check in ldt_keeper.c does not work, so change
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,47)
#define modify_ldt_ldt_s user_desc
#endif
into
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,24)
#define modify_ldt_ldt_s user_desc
#endif
and it should compile without problems.
Thorsten Küfer
More information about the MPlayer-users
mailing list