diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2009-10-10 18:12:35 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2009-10-10 18:12:35 +0000 |
commit | fcd78c18034e53f5a6dfc186559b1e4f0b54c83e (patch) | |
tree | 79b22f39a3da0f003877cb4ef34538138273e2e0 | |
parent | Update to 4.0.5. (diff) |
* Enable libxul support by default [1]
* Add a patch to fix a zombie problem [2]
* Release maintainership
PR: 139369 [1] [2]
Submitted by: Sofian Brabez <sbrabez@gmail.com> [1] [2]
Obtained from: OpenBSD [2]
Notes
Notes:
svn path=/head/; revision=242637
-rw-r--r-- | www/mplayer-plugin/Makefile | 6 | ||||
-rw-r--r-- | www/mplayer-plugin/files/patch-Source_plugin-threads.cpp | 14 |
2 files changed, 17 insertions, 3 deletions
diff --git a/www/mplayer-plugin/Makefile b/www/mplayer-plugin/Makefile index fb50d26e4e51..aa97fcd4ce4f 100644 --- a/www/mplayer-plugin/Makefile +++ b/www/mplayer-plugin/Makefile @@ -7,18 +7,18 @@ PORTNAME= mplayerplug-in PORTVERSION= 3.55 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= www multimedia MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/v${PORTVERSION} -MAINTAINER= marcus@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= A Mozilla plugin for the MPlayer media player RUN_DEPENDS= mplayer:${PORTSDIR}/multimedia/mplayer USE_GETTEXT= yes USE_GMAKE= yes -USE_GECKO= firefox mozilla seamonkey libxul +USE_GECKO= libxul firefox USE_WEBPLUGINS= gecko* WEBPLUGINS_FILES=mplayerplug-in.so mplayerplug-in.xpt mplayerplug-in-wmp.so \ mplayerplug-in-qt.so mplayerplug-in-rm.so \ diff --git a/www/mplayer-plugin/files/patch-Source_plugin-threads.cpp b/www/mplayer-plugin/files/patch-Source_plugin-threads.cpp new file mode 100644 index 000000000000..5483d4b8237b --- /dev/null +++ b/www/mplayer-plugin/files/patch-Source_plugin-threads.cpp @@ -0,0 +1,14 @@ +--- Source/plugin-threads.cpp.orig 2008-06-12 23:38:37.000000000 -0400 ++++ Source/plugin-threads.cpp 2009-10-01 05:04:31.000000000 -0400 +@@ -14,8 +14,11 @@ + + static void sig_child(int signo) + { +- // Not used, so commented out +- // wait(NULL); ++ pid_t pid; ++ int status; ++ ++ pid = wait(&status); ++ return; + } |