Mercurial > mplayer.hg
changeset 16331:96be528902fd
Add -I../libavutil to the includes to fix building vo_zr[2].
patch by Corey Hickey <bugfood-ml - at - fatooh - dot - org>
author | diego |
---|---|
date | Thu, 01 Sep 2005 10:44:46 +0000 |
parents | 9b41de428e7e |
children | 8fab241b098b |
files | libvo/Makefile |
diffstat | 1 files changed, 6 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/libvo/Makefile Wed Aug 31 21:13:05 2005 +0000 +++ b/libvo/Makefile Thu Sep 01 10:44:46 2005 +0000 @@ -17,6 +17,11 @@ 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 @@ endif CFLAGS = $(OPTFLAGS) -I. -I.. -I../osdep \ + $(LIBAV_INC) \ $(FREETYPE_INC) \ $(SDL_INC) \ $(X11_INC) \