summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2021-09-30 02:11:33 +0000
committerMoonchild <moonchild@palemoon.org>2022-04-01 14:38:31 +0200
commita7b63631b0e84c9a5ab1ef266f8f5e26c0f62d6a (patch)
tree521fbd6d7c6b866fbc8d58aa538af14312a57667 /security
parentcdff23ad0b3e0be2121c77a5b2415b15c7c4f0b2 (diff)
downloaduxp-a7b63631b0e84c9a5ab1ef266f8f5e26c0f62d6a.tar.gz
No issue - Clean up some obsolete/archaic code paths.
Diffstat (limited to 'security')
-rw-r--r--security/nss/coreconf/WIN32.mk9
1 files changed, 3 insertions, 6 deletions
diff --git a/security/nss/coreconf/WIN32.mk b/security/nss/coreconf/WIN32.mk
index ac1a454bce..5c28062c00 100644
--- a/security/nss/coreconf/WIN32.mk
+++ b/security/nss/coreconf/WIN32.mk
@@ -4,8 +4,7 @@
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
-# Configuration common to all versions of Windows NT
-# and Windows 95
+# Configuration common to all versions of Windows
#
DEFAULT_COMPILER = cl
@@ -208,9 +207,8 @@ endif
ifeq (,$(filter-out x386 x86_64,$(CPU_ARCH)))
ifdef USE_64
DEFINES += -D_AMD64_
- # Use subsystem 5.02 to allow running on Windows XP.
ifeq ($(_MSC_VER_GE_11),1)
- LDFLAGS += -SUBSYSTEM:CONSOLE,5.02
+ LDFLAGS += -SUBSYSTEM:CONSOLE,6.01
endif
CPU_ARCH = x86_64
else
@@ -218,12 +216,11 @@ else
# VS2012 defaults to -arch:SSE2. Use -arch:IA32 to avoid requiring
# SSE2. Clang-cl gets confused by -arch:IA32, so don't add it.
# (See https://llvm.org/bugs/show_bug.cgi?id=24335)
- # Use subsystem 5.01 to allow running on Windows XP.
ifeq ($(_MSC_VER_GE_11),1)
ifneq ($(CLANG_CL),1)
OS_CFLAGS += -arch:IA32
endif
- LDFLAGS += -SUBSYSTEM:CONSOLE,5.01
+ LDFLAGS += -SUBSYSTEM:CONSOLE,6.01
endif
CPU_ARCH = x386
endif