Commit 64af6898 authored by diego's avatar diego

10l: The ppm video hook depends on fork().

This dependency was apparently accidentally lost while making
the vhook build process non-recursive.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9562 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent df7884de
......@@ -35,9 +35,12 @@ all: videohook
install: install-vhook
endif
VHOOKCFLAGS += $(filter-out -mdynamic-no-pic,$(CFLAGS))
HOOKS = vhook/null$(SLIBSUF) vhook/fish$(SLIBSUF) vhook/ppm$(SLIBSUF) vhook/watermark$(SLIBSUF)
ALLHOOKS = $(HOOKS) vhook/imlib2$(SLIBSUF) vhook/drawtext$(SLIBSUF)
HOOKS = vhook/fish$(SLIBSUF) vhook/null$(SLIBSUF) vhook/watermark$(SLIBSUF)
ALLHOOKS = $(HOOKS) vhook/drawtext$(SLIBSUF) vhook/imlib2$(SLIBSUF) vhook/ppm$(SLIBSUF)
ALLHOOKS_SRCS := $(ALLHOOKS:$(SLIBSUF)=.c)
ifeq ($(HAVE_FORK),yes)
HOOKS += vhook/ppm(SLIBSUF)
endif
ifeq ($(HAVE_IMLIB2),yes)
HOOKS += vhook/imlib2$(SLIBSUF)
VHOOKCFLAGS += `imlib2-config --cflags`
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment