summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-03-10 18:37:18 +0000
committerDiego Biurrun <diego@biurrun.de>2008-03-10 18:37:18 +0000
commitbab785a5f9db0381a27e6648f99445365f067549 (patch)
treeedccaf0b246e4f9806637ae119acf5ca255fe6fb
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
-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))