summaryrefslogtreecommitdiff
path: root/vhook
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2006-08-17 16:32:08 +0000
committerDiego Biurrun <diego@biurrun.de>2006-08-17 16:32:08 +0000
commit7981555d89c16850201a0eda2aca6dc5400cf275 (patch)
tree715b5d1eb149dff860a0c32827afbc345f0b744f /vhook
parenta9f9cc7cc13f838298c392ea2a95294ddc402538 (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. Originally committed as revision 6016 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'vhook')
-rw-r--r--vhook/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/vhook/Makefile b/vhook/Makefile
index 13353551b4..638f15a170 100644
--- a/vhook/Makefile
+++ b/vhook/Makefile
@@ -2,8 +2,8 @@ include ../config.mak
VPATH=$(SRC_PATH)/vhook
-CFLAGS=$(VHOOKCFLAGS) -I.. -I$(SRC_PATH) -I$(SRC_PATH)/libavformat \
- -I$(SRC_PATH)/libavcodec -I$(SRC_PATH)/libavutil -DHAVE_AV_CONFIG_H
+CFLAGS=-I.. -I$(SRC_PATH) -I$(SRC_PATH)/libavutil -I$(SRC_PATH)/libavcodec \
+ -I$(SRC_PATH)/libavformat $(VHOOKCFLAGS) -DHAVE_AV_CONFIG_H
HOOKS=null$(SLIBSUF) fish$(SLIBSUF) ppm$(SLIBSUF) watermark$(SLIBSUF)
ALLHOOKS=$(HOOKS) imlib2$(SLIBSUF) drawtext$(SLIBSUF)