mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
10l: The ppm video hook depends on fork().
This dependency was apparently accidentally lost while making the vhook build process non-recursive. Originally committed as revision 9562 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
7ed8ccb50e
commit
742c94cbb4
7
Makefile
7
Makefile
@ -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`
|
||||
|
Loading…
Reference in New Issue
Block a user