- 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
16 lines
699 B
Plaintext
16 lines
699 B
Plaintext
$OpenBSD: patch-mozilla_extensions_auth_nsAuthGSSAPI_cpp,v 1.4 2012/03/16 21:38:33 landry Exp $
|
|
--- mozilla/extensions/auth/nsAuthGSSAPI.cpp.orig Wed Jan 18 10:41:10 2012
|
|
+++ mozilla/extensions/auth/nsAuthGSSAPI.cpp Sun Jan 22 22:18:18 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) {
|