diff options
author | marcus <marcus@FreeBSD.org> | 2005-03-25 13:55:27 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2005-03-25 13:55:27 +0800 |
commit | b3b8e49e45b1c31a7e980ddc669684a97361544d (patch) | |
tree | 70173d1628dd1cb78d292fc030166245c964ffbb /www/firefox/files | |
parent | a3ff86d6b0c2a6bb4dad3094d070d3584549e5af (diff) | |
download | freebsd-ports-gnome-b3b8e49e45b1c31a7e980ddc669684a97361544d.tar.gz freebsd-ports-gnome-b3b8e49e45b1c31a7e980ddc669684a97361544d.tar.zst freebsd-ports-gnome-b3b8e49e45b1c31a7e980ddc669684a97361544d.zip |
* Update to 1.0.2 to fix security issues (see
http://www.vuxml.org/freebsd/7d2aac52-9c6b-11d9-99a7-000a95bc6fae.html and
http://www.vuxml.org/freebsd/741f8841-9c6b-11d9-9dbe-000a95bc6fae.html for
more details)
* Fix some minor cosmetic issues with the startup script
Submitted by: Jose M Rodriguez (freebsd) <josemi@freebsd.jazztel.es>
Approved by: portmgr (implicit)
Diffstat (limited to 'www/firefox/files')
-rw-r--r-- | www/firefox/files/patch-browser_app_mozilla.in | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/www/firefox/files/patch-browser_app_mozilla.in b/www/firefox/files/patch-browser_app_mozilla.in index 492dacc527e4..6389a61b5e8b 100644 --- a/www/firefox/files/patch-browser_app_mozilla.in +++ b/www/firefox/files/patch-browser_app_mozilla.in @@ -1,5 +1,5 @@ --- browser/app/mozilla.in.orig Tue Oct 26 11:26:11 2004 -+++ browser/app/mozilla.in Mon Feb 28 23:32:14 2005 ++++ browser/app/mozilla.in Wed Mar 23 20:43:07 2005 @@ -29,51 +29,83 @@ ## the mozilla-bin binary to work. ## @@ -123,7 +123,7 @@ # Use run-mozilla.sh in the current dir if it exists # If not, then start resolving symlinks until we find run-mozilla.sh -@@ -82,149 +114,217 @@ +@@ -82,149 +114,221 @@ curdir=`dirname "$progname"` progbase=`basename "$progname"` run_moz="$curdir/run-mozilla.sh" @@ -421,8 +421,12 @@ + # FIXME problems with freedesktop StartupNotify + if [ -n "${debugging}" ]; then + echo "${run_moz} ${script_args} ${MOZ_CLIENT_PROGRAM} ${_remote_cmd}" ++ ${run_moz} ${script_args} ${MOZ_CLIENT_PROGRAM} ${_remote_cmd} && ++ exit 0 ++ else ++ ${run_moz} ${script_args} ${MOZ_CLIENT_PROGRAM} ${_remote_cmd} \ ++ >/dev/null 2>&1 && exit 0 + fi -+ ${run_moz} ${script_args} ${MOZ_CLIENT_PROGRAM} ${_remote_cmd} && exit 0 +fi + +# fallback to direct invocation |