We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 950b5bc commit 53edbd0Copy full SHA for 53edbd0
include/compat/cet.h
@@ -7,7 +7,13 @@
7
#define LIBCOMPAT_CET_H
8
9
#ifndef _MSC_VER
10
-#include_next <cet.h>
+
11
+#ifdef __CET__
12
+# include_next <cet.h>
13
+#else
14
+# define _CET_ENDBR
15
+#endif
16
17
#endif
18
19
update.sh
@@ -186,7 +186,7 @@ $CP crypto/compat/ui_openssl_win.c crypto/ui
186
$GREP -v OPENSSL_ia32cap_P $libcrypto_src/Symbols.list | $GREP '^[A-Za-z0-9_]' > crypto/crypto.sym
187
188
fixup_masm() {
189
- cpp -I./crypto -I./include/compat $1 \
+ cpp -I./crypto -I./include/compat -D_MSC_VER $1 \
190
| sed -e 's/^#/;/' \
191
| sed -e 's/|/OR/g' \
192
| sed -e 's/~/NOT/g' \
0 commit comments