mirror of https://github.com/mpv-player/mpv
Add -I../libavutil to the includes to fix building vo_zr[2].
patch by Corey Hickey <bugfood-ml - at - fatooh - dot - org> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16332 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
ff123e3a88
commit
607067d6a7
|
@ -17,6 +17,11 @@ SRCS=aclib.c \
|
|||
vo_yuv4mpeg.c \
|
||||
$(OPTIONAL_SRCS) \
|
||||
|
||||
LIBAV_INC =
|
||||
ifeq ($(CONFIG_LIBAVUTIL),yes)
|
||||
LIBAV_INC += -I../libavutil
|
||||
endif
|
||||
|
||||
OBJS_TEMP=$(basename $(SRCS))
|
||||
OBJS=$(OBJS_TEMP:%=%.o)
|
||||
|
||||
|
@ -25,6 +30,7 @@ SRCS += vosub_vidix.c
|
|||
endif
|
||||
|
||||
CFLAGS = $(OPTFLAGS) -I. -I.. -I../osdep \
|
||||
$(LIBAV_INC) \
|
||||
$(FREETYPE_INC) \
|
||||
$(SDL_INC) \
|
||||
$(X11_INC) \
|
||||
|
|
Loading…
Reference in New Issue