ee984af849
- Fixes MFSA-2012-01..11 - remove patch-gfx_qcms_qcmstypes_h & patch-toolkit_xre_glxtest_cpp, were commited upstream (bugs #651444 & #687320) - remove patch-js_src_xpconnect_src_Makefile_in, dom_quickstubs.cpp hack was apparently only needed with gcc3 - remove patch-xpcom_base_nsStackWalk_cpp, codepath not reached/solaris only. - add https://bug691898.bugzilla.mozilla.org/attachment.cgi?id=588391 to use yarr interpreter on ppc, bug #691898 still being worked on - backport https://hg.mozilla.org/mozilla-central/rev/9cfdb612a026, fixes endianess detection on BSDs using machine/endian.h (bug #714312)
18 lines
783 B
Plaintext
18 lines
783 B
Plaintext
$OpenBSD: patch-extensions_auth_nsAuthGSSAPI_cpp,v 1.2 2012/02/20 20:15:04 landry Exp $
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=667325
|
|
https://hg.mozilla.org/mozilla-central/rev/e676b8f86ab1
|
|
--- extensions/auth/nsAuthGSSAPI.cpp.orig Wed Jan 11 18:14:40 2012
|
|
+++ extensions/auth/nsAuthGSSAPI.cpp Sat Jan 14 20:21:44 2012
|
|
@@ -163,9 +163,8 @@ gssInit()
|
|
};
|
|
|
|
const char *const verLibNames[] = {
|
|
- "libgssapi_krb5.so.2", /* MIT - FC, Suse10, Debian */
|
|
- "libgssapi.so.4", /* Heimdal - Suse10, MDK */
|
|
- "libgssapi.so.1" /* Heimdal - Suse9, CITI - FC, MDK, Suse10*/
|
|
+ "libgssapi_krb5.so",
|
|
+ "libgssapi.so"
|
|
};
|
|
|
|
for (size_t i = 0; i < ArrayLength(verLibNames) && !lib; ++i) {
|