diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-08-17 17:19:56 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-08-17 17:19:56 +0000 |
commit | b02e7924b9147f3571f0dd0e34c5461a798367ea (patch) | |
tree | 69c9192f7098aff45cbf07ff36479f6b23ba8829 /libass/Makefile | |
parent | 1737500919392ae0830c5a3ee2f147b3fe17abe1 (diff) |
Move all internal -I parameters to the front of CFLAGS to avoid using external
header files that happen to have the same name as internal ones.
based on a patch by Vladislav Naumov, vladislav.naumov **at** gmail **dot** com
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19426 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libass/Makefile')
-rw-r--r-- | libass/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libass/Makefile b/libass/Makefile index 06a4fef650..3385a4c067 100644 --- a/libass/Makefile +++ b/libass/Makefile @@ -9,9 +9,9 @@ SRCS=ass.c ass_cache.c ass_fontconfig.c ass_render.c ass_utils.c ass_mp.c OBJS=$(SRCS:.c=.o) -CFLAGS = $(OPTFLAGS) \ - -I. -I.. \ +CFLAGS = -I. -I.. \ -I../libmpcodecs \ + $(OPTFLAGS) \ -D_GNU_SOURCE \ .SUFFIXES: .c .o |