# HG changeset patch # User diego # Date 1125571486 0 # Node ID 96be528902fdd73ad52ea28b3411ee74a355ada2 # Parent 9b41de428e7e7a5b102315ffde4dc5a75363c8ee Add -I../libavutil to the includes to fix building vo_zr[2]. patch by Corey Hickey diff -r 9b41de428e7e -r 96be528902fd libvo/Makefile --- 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) \