diff options
author | marcus <marcus@FreeBSD.org> | 2009-10-11 02:12:35 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2009-10-11 02:12:35 +0800 |
commit | a448feada44e972315a5dfb1a50a0514a27c12b9 (patch) | |
tree | 25bd73775e5fe6d065c63e9aaa60315a54d6932a /www | |
parent | 0fec214c5488319fb46351139ead21a130f0079f (diff) | |
download | freebsd-ports-gnome-a448feada44e972315a5dfb1a50a0514a27c12b9.tar.gz freebsd-ports-gnome-a448feada44e972315a5dfb1a50a0514a27c12b9.tar.zst freebsd-ports-gnome-a448feada44e972315a5dfb1a50a0514a27c12b9.zip |
* 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]
Diffstat (limited to 'www')
-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; + } |