Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(651)

Delta Between Two Patch Sets: external_tests/pk11_gtest/Makefile

Issue 271240043: Bug 1215295 - Support RSA-PSS for digital signing (Closed)
Left Patch Set: Bug 1215295 - Support RSA-PSS for digital signing Created 8 years, 4 months ago
Right Patch Set: Bug 1215295 - Support RSA-PSS for digital signing Created 8 years, 4 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « external_tests/manifest.mn ('k') | external_tests/pk11_gtest/manifest.mn » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 #! gmake 1 #! gmake
2 # 2 #
3 # This Source Code Form is subject to the terms of the Mozilla Public 3 # This Source Code Form is subject to the terms of the Mozilla Public
4 # License, v. 2.0. If a copy of the MPL was not distributed with this 4 # License, v. 2.0. If a copy of the MPL was not distributed with this
5 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 6
7 ####################################################################### 7 #######################################################################
8 # (1) Include initial platform-independent assignments (MANDATORY). # 8 # (1) Include initial platform-independent assignments (MANDATORY). #
9 ####################################################################### 9 #######################################################################
10 10
(...skipping 30 matching lines...) Expand all
41 ####################################################################### 41 #######################################################################
42 # (7) Execute "local" rules. (OPTIONAL). # 42 # (7) Execute "local" rules. (OPTIONAL). #
43 ####################################################################### 43 #######################################################################
44 44
45 MKPROG = $(CCC) 45 MKPROG = $(CCC)
46 CFLAGS += -I$(CORE_DEPTH)/lib/ssl 46 CFLAGS += -I$(CORE_DEPTH)/lib/ssl
47 47
48 include ../../cmd/platrules.mk 48 include ../../cmd/platrules.mk
49 49
50 ifeq (WINNT,$(OS_ARCH)) 50 ifeq (WINNT,$(OS_ARCH))
51 # -MTd (not -MD) because that makes it link to the right library
52 # -EHsc because gtest has exception handlers 51 # -EHsc because gtest has exception handlers
53 OS_CFLAGS := $(filterout -MD,$(OS_CFLAGS)) 52 OS_CFLAGS += -EHsc -nologo
54 OS_CFLAGS += -MTd -EHsc -nologo
mt 2015/11/09 18:04:14 Check the latest version here. The -MD/MTd flags
55 # http://www.suodenjoki.dk/us/archive/2010/min-max.htm 53 # http://www.suodenjoki.dk/us/archive/2010/min-max.htm
56 OS_CFLAGS += -DNOMINMAX 54 OS_CFLAGS += -DNOMINMAX
57 55
58 # Linking to winsock to get htonl 56 # Linking to winsock to get htonl
59 OS_LIBS += Ws2_32.lib 57 OS_LIBS += Ws2_32.lib
60 else 58 else
61 CXXFLAGS += -std=c++0x 59 CXXFLAGS += -std=c++0x
62 endif 60 endif
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b