* 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]
This commit is contained in:
Joe Marcus Clarke 2009-10-10 18:12:35 +00:00
parent c6c961fb14
commit fcd78c1803
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=242637
2 changed files with 17 additions and 3 deletions

View file

@ -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 \

View file

@ -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;
}