mirror of
https://github.com/mpv-player/mpv
synced 2024-12-25 08:12:17 +00:00
linux 2.6 patch by "ismail 'cartman' dönmez" <ismail.donmez@boun.edu.tr>
no idea whether this really works :) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11766 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
c27b831927
commit
3115b22def
@ -10,7 +10,7 @@ ifeq ($(VIDIX),yes)
|
||||
SRCS += vosub_vidix.c
|
||||
endif
|
||||
|
||||
CFLAGS = $(OPTFLAGS) -I. -I.. $(FREETYPE_INC) $(SDL_INC) $(X11_INC) $(EXTRA_INC) $(DXR2_INC) $(DIRECTFB_INC) -DMPG12PLAY #-Wall
|
||||
CFLAGS = $(OPTFLAGS) -I. -I.. -I../osdep $(FREETYPE_INC) $(SDL_INC) $(X11_INC) $(EXTRA_INC) $(DXR2_INC) $(DIRECTFB_INC) -DMPG12PLAY #-Wall
|
||||
|
||||
.SUFFIXES: .c .o
|
||||
|
||||
|
@ -18,6 +18,7 @@
|
||||
#include <sys/mman.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <sys/kd.h>
|
||||
#include "kerneltwosix.h"
|
||||
#include <linux/fb.h>
|
||||
|
||||
#include "config.h"
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
#include <sys/mman.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include "kerneltwosix.h"
|
||||
#include <linux/fb.h>
|
||||
|
||||
#include "config.h"
|
||||
|
@ -14,6 +14,7 @@
|
||||
#include <unistd.h>
|
||||
#include <fcntl.h>
|
||||
#include <sys/mman.h>
|
||||
#include "kerneltwosix.h"
|
||||
#include <linux/fb.h>
|
||||
|
||||
#include "drivers/mga_vid.h"
|
||||
|
9
osdep/kerneltwosix.h
Normal file
9
osdep/kerneltwosix.h
Normal file
@ -0,0 +1,9 @@
|
||||
#include <linux/version.h>
|
||||
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,70)
|
||||
#define __KERNEL__
|
||||
#include <linux/thread_info.h>
|
||||
#include <linux/list.h>
|
||||
#undef __KERNEL__
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user