03dfdc6123
- see http://www.seamonkey-project.org/releases/seamonkey2.13/ for details - remove patch-mozilla_build_unix_mozilla_in, useless since bin/seamonkey is not a script anymore since a while - remove patch-mozilla_build_unix_run-mozilla_sh, seamonkey can be directly debugged in gdb now. update README accordingly - fix plugin path in README
17 lines
704 B
Plaintext
17 lines
704 B
Plaintext
$OpenBSD: patch-mozilla_toolkit_xre_nsXREDirProvider_cpp,v 1.13 2012/10/10 21:03:40 landry Exp $
|
|
--- mozilla/toolkit/xre/nsXREDirProvider.cpp.orig Fri Aug 31 07:56:40 2012
|
|
+++ mozilla/toolkit/xre/nsXREDirProvider.cpp Sun Sep 2 12:45:42 2012
|
|
@@ -1174,11 +1174,7 @@ nsXREDirProvider::GetSystemExtensionsDirectory(nsIFile
|
|
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));
|