2011-06-01 08:05:09 +02:00
|
|
|
From: Hans Petter Jansson <hpj@copyleft.no>
|
|
|
|
Wolfgang Rosenauer <wr@rosenauer.org>
|
|
|
|
Subject: use libnsssharedhelper if available at compile time
|
2011-12-18 14:13:18 +01:00
|
|
|
(can be disabled by exporting MOZ_XRE_NO_NSSHELPER=1)
|
2011-06-01 08:05:09 +02:00
|
|
|
References:
|
|
|
|
|
|
|
|
diff --git a/config/autoconf.mk.in b/config/autoconf.mk.in
|
|
|
|
--- a/config/autoconf.mk.in
|
|
|
|
+++ b/config/autoconf.mk.in
|
2012-08-28 20:40:50 +02:00
|
|
|
@@ -573,16 +573,20 @@ MOZ_ENABLE_LIBNOTIFY = @MOZ_ENABLE_LIBNO
|
2011-12-18 14:10:54 +01:00
|
|
|
|
|
|
|
MOZ_ALSA_LIBS = @MOZ_ALSA_LIBS@
|
2012-07-16 10:13:51 +02:00
|
|
|
MOZ_ALSA_CFLAGS = @MOZ_ALSA_CFLAGS@
|
2011-06-01 08:05:09 +02:00
|
|
|
|
|
|
|
GLIB_CFLAGS = @GLIB_CFLAGS@
|
|
|
|
GLIB_LIBS = @GLIB_LIBS@
|
|
|
|
GLIB_GMODULE_LIBS = @GLIB_GMODULE_LIBS@
|
|
|
|
|
|
|
|
+MOZ_ENABLE_NSSHELPER = @MOZ_ENABLE_NSSHELPER@
|
|
|
|
+NSSHELPER_CFLAGS = @NSSHELPER_CFLAGS@
|
|
|
|
+NSSHELPER_LIBS = @NSSHELPER_LIBS@
|
|
|
|
+
|
|
|
|
MOZ_NATIVE_MAKEDEPEND = @SYSTEM_MAKEDEPEND@
|
|
|
|
|
|
|
|
export CL_INCLUDES_PREFIX = @CL_INCLUDES_PREFIX@
|
|
|
|
|
|
|
|
MOZ_AUTO_DEPS = @MOZ_AUTO_DEPS@
|
|
|
|
COMPILER_DEPEND = @COMPILER_DEPEND@
|
|
|
|
MDDEPDIR := @MDDEPDIR@
|
|
|
|
CC_WRAPPER = @CC_WRAPPER@
|
|
|
|
diff --git a/configure.in b/configure.in
|
|
|
|
--- a/configure.in
|
|
|
|
+++ b/configure.in
|
2012-08-28 20:40:50 +02:00
|
|
|
@@ -8270,16 +8270,31 @@ AC_SUBST(QCMS_LIBS)
|
2011-06-01 08:05:09 +02:00
|
|
|
|
|
|
|
dnl ========================================================
|
|
|
|
dnl HarfBuzz
|
|
|
|
dnl ========================================================
|
|
|
|
MOZ_HARFBUZZ_LIBS='$(DEPTH)/gfx/harfbuzz/src/$(LIB_PREFIX)mozharfbuzz.$(LIB_SUFFIX)'
|
|
|
|
AC_SUBST(MOZ_HARFBUZZ_LIBS)
|
|
|
|
|
|
|
|
dnl ========================================================
|
|
|
|
+dnl Check for nss-shared-helper
|
|
|
|
+dnl ========================================================
|
|
|
|
+
|
|
|
|
+ PKG_CHECK_MODULES(NSSHELPER, nss-shared-helper,
|
|
|
|
+ [MOZ_ENABLE_NSSHELPER=1],
|
|
|
|
+ [MOZ_ENABLE_NSSHELPER=])
|
|
|
|
+
|
|
|
|
+if test "$MOZ_ENABLE_NSSHELPER"; then
|
|
|
|
+ AC_DEFINE(MOZ_ENABLE_NSSHELPER)
|
|
|
|
+fi
|
|
|
|
+AC_SUBST(MOZ_ENABLE_NSSHELPER)
|
|
|
|
+AC_SUBST(NSSHELPER_CFLAGS)
|
|
|
|
+AC_SUBST(NSSHELPER_LIBS)
|
|
|
|
+
|
|
|
|
+dnl ========================================================
|
2012-03-01 10:09:12 +01:00
|
|
|
dnl SIL Graphite
|
2011-06-01 08:05:09 +02:00
|
|
|
dnl ========================================================
|
2012-03-01 10:09:12 +01:00
|
|
|
if test "$MOZ_GRAPHITE"; then
|
|
|
|
MOZ_GRAPHITE_LIBS='$(DEPTH)/gfx/graphite2/src/$(LIB_PREFIX)mozgraphite2.$(LIB_SUFFIX)'
|
|
|
|
AC_DEFINE(MOZ_GRAPHITE)
|
|
|
|
else
|
|
|
|
MOZ_GRAPHITE_LIBS=
|
|
|
|
fi
|
2011-06-01 08:05:09 +02:00
|
|
|
diff --git a/security/manager/ssl/src/Makefile.in b/security/manager/ssl/src/Makefile.in
|
|
|
|
--- a/security/manager/ssl/src/Makefile.in
|
|
|
|
+++ b/security/manager/ssl/src/Makefile.in
|
2012-08-28 20:40:50 +02:00
|
|
|
@@ -86,12 +86,14 @@ EXTRA_DEPS = $(NSS_DEP_LIBS)
|
2012-03-01 10:09:12 +01:00
|
|
|
DEFINES += \
|
|
|
|
-DNSS_ENABLE_ECC \
|
|
|
|
-DDLL_PREFIX=\"$(DLL_PREFIX)\" \
|
|
|
|
-DDLL_SUFFIX=\"$(DLL_SUFFIX)\" \
|
|
|
|
$(NULL)
|
2011-06-01 08:05:09 +02:00
|
|
|
|
|
|
|
# Use local includes because they are inserted before INCLUDES
|
|
|
|
# so that Mozilla's nss.h is used, not glibc's
|
|
|
|
-LOCAL_INCLUDES += $(NSS_CFLAGS)
|
|
|
|
+LOCAL_INCLUDES += $(NSS_CFLAGS) $(NSSHELPER_CFLAGS)
|
2011-09-26 08:53:33 +02:00
|
|
|
+
|
|
|
|
+EXTRA_DSO_LDOPTS += $(NSSHELPER_LIBS)
|
2011-06-01 08:05:09 +02:00
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
|
|
|
diff --git a/security/manager/ssl/src/nsNSSComponent.cpp b/security/manager/ssl/src/nsNSSComponent.cpp
|
|
|
|
--- a/security/manager/ssl/src/nsNSSComponent.cpp
|
|
|
|
+++ b/security/manager/ssl/src/nsNSSComponent.cpp
|
2012-08-28 20:40:50 +02:00
|
|
|
@@ -1,14 +1,21 @@
|
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
2011-06-01 08:05:09 +02:00
|
|
|
*
|
2012-08-28 20:40:50 +02:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2011-06-01 08:05:09 +02:00
|
|
|
|
|
|
|
+#ifdef MOZ_ENABLE_NSSHELPER
|
|
|
|
+#pragma GCC visibility push(default)
|
|
|
|
+#include <nss-shared-helper.h>
|
|
|
|
+#pragma GCC visibility pop
|
|
|
|
+#include "prenv.h"
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
#include "nsNSSComponent.h"
|
|
|
|
#include "nsNSSCallbacks.h"
|
|
|
|
#include "nsNSSIOLayer.h"
|
|
|
|
#include "nsCertVerificationThread.h"
|
|
|
|
|
|
|
|
#include "nsNetUtil.h"
|
|
|
|
#include "nsAppDirectoryServiceDefs.h"
|
2012-03-01 10:09:12 +01:00
|
|
|
#include "nsDirectoryService.h"
|
2012-08-28 20:40:50 +02:00
|
|
|
@@ -1738,18 +1745,34 @@ nsNSSComponent::InitializeNSS(bool showW
|
2011-06-01 08:05:09 +02:00
|
|
|
ConfigureInternalPKCS11Token();
|
|
|
|
|
|
|
|
// The NSS_INIT_NOROOTINIT flag turns off the loading of the root certs
|
|
|
|
// module by NSS_Initialize because we will load it in InstallLoadableRoots
|
|
|
|
// later. It also allows us to work around a bug in the system NSS in
|
|
|
|
// Ubuntu 8.04, which loads any nonexistent "<configdir>/libnssckbi.so" as
|
|
|
|
// "/usr/lib/nss/libnssckbi.so".
|
|
|
|
PRUint32 init_flags = NSS_INIT_NOROOTINIT | NSS_INIT_OPTIMIZESPACE;
|
|
|
|
- SECStatus init_rv = ::NSS_Initialize(profileStr.get(), "", "",
|
|
|
|
- SECMOD_DB, init_flags);
|
|
|
|
+ SECStatus init_rv = SECFailure;
|
|
|
|
+#ifdef MOZ_ENABLE_NSSHELPER
|
2011-12-18 14:13:18 +01:00
|
|
|
+ if (PR_GetEnv("MOZ_XRE_NO_NSSHELPER")) {
|
2011-06-01 08:05:09 +02:00
|
|
|
+ init_rv = ::NSS_Initialize(profileStr.get(), "", "",
|
|
|
|
+ SECMOD_DB, init_flags);
|
|
|
|
+ } else {
|
2011-12-18 14:10:54 +01:00
|
|
|
+ init_rv = ::nsshelp_open_db ("Firefox", profileStr.get(), init_flags);
|
2011-06-01 08:05:09 +02:00
|
|
|
+
|
|
|
|
+ if (init_rv != SECSuccess) {
|
|
|
|
+ PR_LOG(gPIPNSSLog, PR_LOG_DEBUG, ("can not init NSS using nsshelp_open_db in %s\n", profileStr.get()));
|
|
|
|
+ init_rv = ::NSS_Initialize(profileStr.get(), "", "",
|
|
|
|
+ SECMOD_DB, init_flags);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+#else
|
|
|
|
+ init_rv = ::NSS_Initialize(profileStr.get(), "", "",
|
|
|
|
+ SECMOD_DB, init_flags);
|
|
|
|
+#endif
|
|
|
|
|
|
|
|
if (init_rv != SECSuccess) {
|
|
|
|
PR_LOG(gPIPNSSLog, PR_LOG_DEBUG, ("can not init NSS r/w in %s\n", profileStr.get()));
|
|
|
|
|
|
|
|
if (supress_warning_preference) {
|
|
|
|
which_nss_problem = problem_none;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
diff --git a/toolkit/library/Makefile.in b/toolkit/library/Makefile.in
|
|
|
|
--- a/toolkit/library/Makefile.in
|
|
|
|
+++ b/toolkit/library/Makefile.in
|
2012-08-28 20:40:50 +02:00
|
|
|
@@ -446,17 +446,17 @@ EXTRA_DSO_LDOPTS += -INCREMENTAL:NO
|
2012-02-01 14:37:15 +01:00
|
|
|
endif
|
2011-07-23 16:46:28 +02:00
|
|
|
endif
|
2011-06-01 08:05:09 +02:00
|
|
|
endif
|
|
|
|
|
2011-07-23 16:46:28 +02:00
|
|
|
EXTRA_DSO_LDOPTS += $(LIBS_DIR) $(EXTRA_DSO_LIBS)
|
|
|
|
|
2011-06-01 08:05:09 +02:00
|
|
|
DEFINES += -DIMPL_XREAPI
|
|
|
|
|
|
|
|
-EXTRA_DSO_LDOPTS += $(NSPR_LIBS) $(MOZALLOC_LIB)
|
|
|
|
+EXTRA_DSO_LDOPTS += $(NSPR_LIBS) $(MOZALLOC_LIB) $(NSSHELPER_LIBS)
|
|
|
|
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),cocoa)
|
2012-03-01 10:09:12 +01:00
|
|
|
CXXFLAGS += $(TK_CFLAGS)
|
2011-06-01 08:05:09 +02:00
|
|
|
OS_LIBS += \
|
2012-03-01 10:09:12 +01:00
|
|
|
-framework SystemConfiguration \
|
|
|
|
-framework QuickTime \
|
|
|
|
-framework IOKit \
|
|
|
|
-F/System/Library/PrivateFrameworks -framework CoreUI \
|