[SCM] libav/experimental: 10l: The ppm video hook depends on fork(). This dependency was apparently accidentally lost while making the vhook build process non-recursive.

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:03:20 UTC 2013


The following commit has been merged in the experimental branch:
commit 742c94cbb4c387767b8a41cb7eb592bad4514365
Author: Diego Biurrun <diego at biurrun.de>
Date:   Mon Jul 9 19:28:18 2007 +0000

    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

diff --git a/Makefile b/Makefile
index 58d0d75..a020ec6 100644
--- a/Makefile
+++ b/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`

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list