diff --git a/browser/installer/package-manifest.in b/browser/installer/package-manifest.in index 02250c4abb65..c6249313dde8 100644 --- a/browser/installer/package-manifest.in +++ b/browser/installer/package-manifest.in @@ -698,6 +698,11 @@ @BINPATH@/components/pipnss.xpt @BINPATH@/components/pippki.xpt +; For content sandboxing +#if defined(XP_WIN) && defined(MOZ_CONTENT_SANDBOX) +@BINPATH@/@DLL_PREFIX@sandboxbroker@DLL_SUFFIX@ +#endif + ; for Solaris SPARC #ifdef SOLARIS bin/libfreebl_32fpu_3.so diff --git a/security/sandbox/win/src/sandboxbroker/moz.build b/security/sandbox/win/src/sandboxbroker/moz.build index bad0179334d1..f2f0894bb750 100644 --- a/security/sandbox/win/src/sandboxbroker/moz.build +++ b/security/sandbox/win/src/sandboxbroker/moz.build @@ -5,7 +5,7 @@ # file, You can obtain one at http://mozilla.org/MPL/2.0/. MODULE = 'sandboxbroker' -LIBRARY_NAME = 'sandboxbroker_s' +LIBRARY_NAME = 'sandboxbroker' EXPORT_LIBRARY = True SOURCES += [ diff --git a/toolkit/library/Makefile.in b/toolkit/library/Makefile.in index 9f6177a42300..6dffaba2843c 100644 --- a/toolkit/library/Makefile.in +++ b/toolkit/library/Makefile.in @@ -43,7 +43,7 @@ endif ifdef MOZ_CONTENT_SANDBOX ifeq ($(OS_ARCH),WINNT) LOCAL_INCLUDES += -I$(srcdir)/../sandboxbroker - SHARED_LIBRARY_LIBS += ../../security/sandbox/win/src/sandboxbroker/$(LIB_PREFIX)sandboxbroker_s.$(LIB_SUFFIX) + SHARED_LIBRARY_LIBS += ../../security/sandbox/win/src/sandboxbroker/$(LIB_PREFIX)sandboxbroker.$(LIB_SUFFIX) endif endif