summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2023-03-27 08:52:59 +0200
committerStefan Behnel <stefan_ml@behnel.de>2023-03-27 08:52:59 +0200
commitdfdd910453e24f48dfe550060065cb7dbdd41728 (patch)
tree5b753667dfa40146f3efb53865d849814ebbe517
parentd35f44e2d3da16d756467e1b9dd4001cb1f60d44 (diff)
downloadpython-lxml-dfdd910453e24f48dfe550060065cb7dbdd41728.tar.gz
Add missing C macro define on Windows that is now required by libexslt 1.1.37.
-rw-r--r--setupinfo.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/setupinfo.py b/setupinfo.py
index 67589147..90b1de4e 100644
--- a/setupinfo.py
+++ b/setupinfo.py
@@ -351,6 +351,7 @@ def define_macros():
if OPTION_BUILD_LIBXML2XSLT:
macros.append(('LIBXML_STATIC', None))
macros.append(('LIBXSLT_STATIC', None))
+ macros.append(('LIBEXSLT_STATIC', None))
# Disable showing C lines in tracebacks, unless explicitly requested.
macros.append(('CYTHON_CLINE_IN_TRACEBACK', '1' if OPTION_WITH_CLINES else '0'))
return macros