433f3c4b5e
That's the first release following the new fast scheme of one major release every 6 weeks.. Check out http://www.mozilla.com/en-US/firefox/5.0/releasenotes/ for release notes. Note that it's still badly broken on sparc64, and unlikely to be fixed soon... you still have www/firefox36. Tested by (at least, probably forgetting some..) rpointel@, pea@, ckuethe@ and myself on amd64, bluhm@ on i386 and ajacoutot@ on macppc (thanks!) ok rpointel@
19 lines
860 B
Plaintext
19 lines
860 B
Plaintext
$OpenBSD: patch-xpcom_io_nsAppFileLocationProvider_cpp,v 1.4 2011/06/28 05:43:57 landry Exp $
|
|
Lookup for plugins in LOCALBASE
|
|
--- xpcom/io/nsAppFileLocationProvider.cpp.orig Fri May 27 18:12:59 2011
|
|
+++ xpcom/io/nsAppFileLocationProvider.cpp Tue May 31 22:18:41 2011
|
|
@@ -234,12 +234,7 @@ nsAppFileLocationProvider::GetFile(const char *prop, P
|
|
}
|
|
#ifdef XP_UNIX
|
|
else if (nsCRT::strcmp(prop, NS_SYSTEM_PLUGINS_DIR) == 0) {
|
|
- static const char *const sysLPlgDir =
|
|
-#if defined(HAVE_USR_LIB64_DIR) && defined(__LP64__)
|
|
- "/usr/lib64/mozilla/plugins";
|
|
-#else
|
|
- "/usr/lib/mozilla/plugins";
|
|
-#endif
|
|
+ static const char *const sysLPlgDir = "${LOCALBASE}/lib/mozilla/plugins";
|
|
rv = NS_NewNativeLocalFile(nsDependentCString(sysLPlgDir),
|
|
PR_FALSE, getter_AddRefs(localFile));
|
|
}
|