[patch] Bug#547301: problems with https on GNU/kFreeBSD
reassign 547301 nss
found 547301 3.12.3.1-1
tags 547301 +patch
--
Hello,
the problematic part is CHECK_FORK() in nss.
Under GNU/kFreeBSD threads are process clones,
similarly as under linux 2.4 series,
it is not possible to use CHECK_FORK_GETPID implementation.
It is related to https://bugzilla.mozilla.org/show_bug.cgi?id=508259
Thanks again for NSPR_LOG_* hints.
Petr
--- mozilla/security/nss/lib/softoken/softoken.h
+++ mozilla/security/nss/lib/softoken/softoken.h
@@ -303,7 +303,7 @@
#define CHECK_FORK_MIXED
-#elif defined(LINUX)
+#elif defined(LINUX) || defined (__FreeBSD_kernel__)
#define CHECK_FORK_PTHREAD
Reply to: