diff options
author | Luca Abeni <lucabe72@email.it> | 2006-10-23 17:06:32 +0000 |
---|---|---|
committer | Luca Abeni <lucabe72@email.it> | 2006-10-23 17:06:32 +0000 |
commit | a163ed1aaae3d15ad59ca176f5f468a5e883c2cb (patch) | |
tree | 65b1b1a133ae0e461048b553419c5745a0731f94 /vhook/Makefile | |
parent | 755073fe3c0238aab282851f54cf9ffcf84065dc (diff) | |
download | ffmpeg-a163ed1aaae3d15ad59ca176f5f468a5e883c2cb.tar.gz |
Do not use a fake libavcodec/swscale.h, but always use the real one
(from libswscale) instead
Originally committed as revision 6777 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'vhook/Makefile')
-rw-r--r-- | vhook/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/vhook/Makefile b/vhook/Makefile index 2e699d263a..e784d501d8 100644 --- a/vhook/Makefile +++ b/vhook/Makefile @@ -3,13 +3,9 @@ include ../config.mak VPATH=$(SRC_PATH)/vhook CFLAGS=-I$(BUILD_ROOT) -I$(SRC_PATH) -I$(SRC_PATH)/libavutil -I$(SRC_PATH)/libavcodec \ - -I$(SRC_PATH)/libavformat $(VHOOKCFLAGS) -DHAVE_AV_CONFIG_H + -I$(SRC_PATH)/libavformat -I$(SRC_PATH)/libswscale $(VHOOKCFLAGS) -DHAVE_AV_CONFIG_H LDFLAGS+= -g -ifeq ($(CONFIG_SWSCALER),yes) -CFLAGS := -I$(SRC_PATH)/libswscale $(CFLAGS) -endif - HOOKS=null$(SLIBSUF) fish$(SLIBSUF) ppm$(SLIBSUF) watermark$(SLIBSUF) ALLHOOKS=$(HOOKS) imlib2$(SLIBSUF) drawtext$(SLIBSUF) |