c34d58f59f
- Fixes MFSA 2012-12->19 - see http://www.seamonkey-project.org/releases/seamonkey2.8/ - complete patchset for #691898, still fixes build on ppc (and hopefully commited in firefox 14...) - add patchset from #706955, workarounds #669050 (xpcshell hangs during make install and chokes on CSPUtils.csm, threads related..) - remove obsolete/commited patches
17 lines
703 B
Plaintext
17 lines
703 B
Plaintext
$OpenBSD: patch-mozilla_toolkit_xre_nsXREDirProvider_cpp,v 1.8 2012/03/16 21:38:33 landry Exp $
|
|
--- mozilla/toolkit/xre/nsXREDirProvider.cpp.orig Fri Mar 9 21:29:48 2012
|
|
+++ mozilla/toolkit/xre/nsXREDirProvider.cpp Sat Mar 10 13:20:27 2012
|
|
@@ -1131,11 +1131,7 @@ nsXREDirProvider::GetSystemExtensionsDirectory(nsILoca
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
#elif defined(XP_UNIX)
|
|
static const char *const sysSExtDir =
|
|
-#ifdef HAVE_USR_LIB64_DIR
|
|
- "/usr/lib64/mozilla/extensions";
|
|
-#else
|
|
- "/usr/lib/mozilla/extensions";
|
|
-#endif
|
|
+ "${LOCALBASE}/lib/mozilla/extensions";
|
|
|
|
rv = NS_NewNativeLocalFile(nsDependentCString(sysSExtDir), false,
|
|
getter_AddRefs(localDir));
|