Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-03-10 21:37:18 +0300
committerDiego Biurrun <diego@biurrun.de>2008-03-10 21:37:18 +0300
commitbab785a5f9db0381a27e6648f99445365f067549 (patch)
treeedccaf0b246e4f9806637ae119acf5ca255fe6fb /Makefile
parent13ca50f367d34a11a62ce4ae9317b0f7b2f6f81c (diff)
vhooks really need libav* even if they compile fine without on Linux.
Originally committed as revision 12409 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 92141e23c5..1732042740 100644
--- a/Makefile
+++ b/Makefile
@@ -121,7 +121,8 @@ ffplay.o: CFLAGS += $(SDL_CFLAGS)
ffmpeg.o ffplay.o ffserver.o: version.h
-videohook: $(HOOKS)
+# vhooks compile fine without libav*, but need them nonetheless.
+videohook: .libs $(HOOKS)
vhook/%$(SLIBSUF): vhook/%.o
$(CC) $(LDFLAGS) -o $@ $(VHOOKSHFLAGS) $< $(VHOOKLIBS) $(LIBS_$(@F))