Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion xmlsec_setupinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def load_xmlsec1_config():
# fix macros, ensure that macros is list
macros = list(config.get('define_macros', []))
for i, v in enumerate(macros):
if v[0] == 'XMLSEC_CRYPTO':
if v[0] == 'XMLSEC_CRYPTO' and not (v[1].startswith('"') and v[1].endswith('"')):
macros[i] = ('XMLSEC_CRYPTO', '"{0}"'.format(v[1]))
break
config['define_macros'] = macros
Expand Down