diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2005-09-01 10:44:46 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2005-09-01 10:44:46 +0000 |
commit | 607067d6a7e276e9348709ad701255b5a9d6b2d2 (patch) | |
tree | dfc6ff19105a82651c71d52b8b888e02de50775b /libvo/Makefile | |
parent | ff123e3a882d6275d17af4a955e47f0b28fe1c60 (diff) |
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
Diffstat (limited to 'libvo/Makefile')
-rw-r--r-- | libvo/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libvo/Makefile b/libvo/Makefile index 53ebebb3ed..19b1c4dade 100644 --- a/libvo/Makefile +++ b/libvo/Makefile @@ -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) \ |