File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -44,12 +44,11 @@ jobs:
44
44
- static_linking : false
45
45
steps :
46
46
- name : install dependencies
47
- # nss is disabled for now
48
47
run : |
49
48
brew update
50
49
brew install automake autoconf libtool
51
- brew install libxml2 libxslt
52
- brew install openssl libgcrypt gnutls
50
+ # brew install libxml2 libxslt
51
+ brew install openssl nspr nss libgcrypt gnutls
53
52
- uses : actions/checkout@v2
54
53
- run : mkdir build
55
54
- name : configure
@@ -101,6 +100,8 @@ jobs:
101
100
mingw-w64-${{ matrix.arch }}-libxml2
102
101
mingw-w64-${{ matrix.arch }}-libxslt
103
102
mingw-w64-${{ matrix.arch }}-openssl
103
+ mingw-w64-${{ matrix.arch }}-nspr
104
+ mingw-w64-${{ matrix.arch }}-nss
104
105
mingw-w64-${{ matrix.arch }}-gnutls
105
106
- run : git config --global core.autocrlf input
106
107
shell : bash
Original file line number Diff line number Diff line change 19
19
#include <xmlsec/transforms.h>
20
20
#include <xmlsec/dl.h>
21
21
22
+
23
+ /* MD5 was removed from NSS */
24
+ #if (NSS_VMAJOR > 3 ) || ((NSS_VMAJOR == 3 ) && (NSS_VMINOR > 58 ))
25
+ #define XMLSEC_NO_MD5 1
26
+ #endif /* (NSS_VMAJOR > 3) || ((NSS_VMAJOR == 3) && (NSS_VMINOR > 58)) */
27
+
22
28
#ifdef __cplusplus
23
29
extern "C" {
24
30
#endif /* __cplusplus */
You can’t perform that action at this time.
0 commit comments