We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ed9d42 commit a5954f6Copy full SHA for a5954f6
src/platform.h
@@ -19,11 +19,11 @@
19
#include <windows.h>
20
#endif /* MS_WIN32 */
21
22
-#define XMLSEC_VERSION_HEX ((XMLSEC_VERSION_MAJOR << 8) | (XMLSEC_VERSION_MINOR << 4) | (XMLSEC_VERSION_SUBMINOR))
+#define XMLSEC_VERSION_HEX ((XMLSEC_VERSION_MAJOR << 16) | (XMLSEC_VERSION_MINOR << 8) | (XMLSEC_VERSION_SUBMINOR))
23
24
// XKMS support was removed in version 1.2.21
25
// https://mail.gnome.org/archives/commits-list/2015-February/msg10555.html
26
-#if XMLSEC_VERSION_HEX > 0x134
+#if XMLSEC_VERSION_HEX > 0x10214
27
#define XMLSEC_NO_XKMS 1
28
#endif
29
0 commit comments