summaryrefslogtreecommitdiff
path: root/www/firefox/files/patch-bugzilla-535300
diff options
context:
space:
mode:
authorBeat Gaetzi <beat@FreeBSD.org>2011-09-27 18:44:34 +0000
committerBeat Gaetzi <beat@FreeBSD.org>2011-09-27 18:44:34 +0000
commit5bfd72cc53797a90b6537e013b9962db11645e10 (patch)
tree33a6da0966ff18972fb01bb56d20e36fc3766c4d /www/firefox/files/patch-bugzilla-535300
parentFix build and fail if no app servers are selected. (diff)
- Update Firefox to 7.0
Thanks to: flo@ for preparing the www/firefox update
Notes
Notes: svn path=/head/; revision=282507
Diffstat (limited to 'www/firefox/files/patch-bugzilla-535300')
-rw-r--r--www/firefox/files/patch-bugzilla-53530020
1 files changed, 0 insertions, 20 deletions
diff --git a/www/firefox/files/patch-bugzilla-535300 b/www/firefox/files/patch-bugzilla-535300
deleted file mode 100644
index 4c0bb136129a..000000000000
--- a/www/firefox/files/patch-bugzilla-535300
+++ /dev/null
@@ -1,20 +0,0 @@
---- ipc/glue/GeckoChildProcessHost.cpp.orig 2011-06-15 23:57:27.000000000 +0200
-+++ ipc/glue/GeckoChildProcessHost.cpp 2011-06-27 23:48:28.799495181 +0200
-@@ -433,7 +433,16 @@
- #ifdef ANDROID
- path += "/lib";
- #endif
-- newEnvVars["LD_LIBRARY_PATH"] = path.get();
-+ const char *ld_library_path = PR_GetEnv("LD_LIBRARY_PATH");
-+ nsCString new_ld_lib_path;
-+ if (ld_library_path && *ld_library_path) {
-+ new_ld_lib_path.Assign(ld_library_path);
-+ new_ld_lib_path.AppendLiteral(":");
-+ new_ld_lib_path.Append(path.get());
-+ newEnvVars["LD_LIBRARY_PATH"] = new_ld_lib_path.get();
-+ } else {
-+ newEnvVars["LD_LIBRARY_PATH"] = path.get();
-+ }
- #elif OS_MACOSX
- newEnvVars["DYLD_LIBRARY_PATH"] = path.get();
- #endif