Bug 658848 - Clean up XRE_WANT_DLL_BLOCKLIST. r=bsmedberg

This commit is contained in:
Mike Hommey 2012-05-22 08:46:17 +02:00
parent bee280e4c7
commit 55512a4c8a
2 changed files with 0 additions and 15 deletions

View File

@ -11,11 +11,7 @@
#include <map>
#ifdef XRE_WANT_DLL_BLOCKLIST
#define XRE_SetupDllBlocklist SetupDllBlocklist
#else
#include "nsXULAppAPI.h"
#endif
#include "nsAutoPtr.h"
#include "nsThreadUtils.h"

View File

@ -16,13 +16,6 @@
#include "nsSetDllDirectory.h"
#endif
#if defined(_MSC_VER) && (defined(_M_IX86) || defined(_M_X64)) && defined(XRE_WANT_DLL_BLOCKLIST)
#include "nsWindowsDllBlocklist.cpp"
#else
#undef XRE_WANT_DLL_BLOCKLIST
#endif
#ifdef __MINGW32__
/* MingW currently does not implement a wide version of the
@ -84,10 +77,6 @@ int wmain(int argc, WCHAR **argv)
SetDllDirectoryW(L"");
#endif
#ifdef XRE_WANT_DLL_BLOCKLIST
SetupDllBlocklist();
#endif
char **argvConverted = new char*[argc + 1];
if (!argvConverted)
return 127;