Bug 1035125 Part 1: Back out changeset 1910714b56c6 and associated subsequent changes. r=bsmedberg

The original changeset that is being backed out had comment:
Bug 1023941 - Part 5: Loader hook to redirect the missing import.

The changes made in bug 1023941 were to work around the fact that with VS2013, msvcr120.dll imports kernel32!GetLogicalProcessorInformation, which is not available on Windows XP SP2.
In VS2015, the GetLogicalProcessorInformation requirement has moved into concrt140.dll (concurrency runtime), which we don't use.
So, now that our build infra is building with VS2015, we can remove the hooking and static runtime linking required to get the VS2013 fix to work.

In addition we need to do that to be able us to link the Chromium sandbox code into firefox.exe and get it to build and run with both VS2015 and VS2013.

MozReview-Commit-ID: 1tlXaYJ8dHH
This commit is contained in:
Bob Owen
2016-05-15 16:23:56 +01:00
parent 44591b23c0
commit f8d0bcd85c
5 changed files with 0 additions and 157 deletions

View File

@@ -20,7 +20,6 @@
// we want a wmain entry point
#define XRE_DONT_PROTECT_DLL_LOAD
#define XRE_DONT_SUPPORT_XPSP2 // xpcshell does not ship
#define XRE_WANT_ENVIRON
#include "nsWindowsWMain.cpp"
#endif