Mercurial > mplayer.hg
comparison libaf/Makefile @ 19420:4f71ed7cb512
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
author | diego |
---|---|
date | Thu, 17 Aug 2006 17:19:56 +0000 |
parents | 7a9a9748e045 |
children | 618d1857f4c4 |
comparison
equal
deleted
inserted
replaced
19419:3ae6b0a6fffc | 19420:4f71ed7cb512 |
---|---|
41 SRCS+=af_lavcresample.c | 41 SRCS+=af_lavcresample.c |
42 endif | 42 endif |
43 | 43 |
44 OBJS=$(SRCS:.c=.o) | 44 OBJS=$(SRCS:.c=.o) |
45 | 45 |
46 CFLAGS = $(OPTFLAGS) -I. -I.. $(LIBAV_INC) -D_GNU_SOURCE | 46 CFLAGS = -I. -I.. $(LIBAV_INC) $(OPTFLAGS) -D_GNU_SOURCE |
47 | 47 |
48 ifeq ($(TARGET_OS),MINGW32) | 48 ifeq ($(TARGET_OS),MINGW32) |
49 CFLAGS += -D_IO_H_ | 49 CFLAGS += -D_IO_H_ |
50 endif | 50 endif |
51 | 51 |