diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-03-10 18:37:18 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-03-10 18:37:18 +0000 |
commit | bab785a5f9db0381a27e6648f99445365f067549 (patch) | |
tree | edccaf0b246e4f9806637ae119acf5ca255fe6fb | |
parent | 13ca50f367d34a11a62ce4ae9317b0f7b2f6f81c (diff) | |
download | ffmpeg-bab785a5f9db0381a27e6648f99445365f067549.tar.gz |
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-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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)) |