summaryrefslogtreecommitdiffstats
path: root/Modules/Setup
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2021-11-14 09:02:24 (GMT)
committerGitHub <noreply@github.com>2021-11-14 09:02:24 (GMT)
commit464e6616be86129e33af6d9e43540c260d6804d5 (patch)
treec3f516c93bf2e0bc58ee6b3868e5a8a6aab12977 /Modules/Setup
parent25835c518aa7446f3680b62c1fb43827e0f190d9 (diff)
downloadcpython-464e6616be86129e33af6d9e43540c260d6804d5.zip
cpython-464e6616be86129e33af6d9e43540c260d6804d5.tar.gz
cpython-464e6616be86129e33af6d9e43540c260d6804d5.tar.bz2
bpo-45800: Move pyexpat build setup into configure (GH-29547)
Settings for :mod:`pyexpat` C extension are now detected by ``configure``. The bundled ``expat`` library is built in ``Makefile``. Signed-off-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'Modules/Setup')
-rw-r--r--Modules/Setup4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/Setup b/Modules/Setup
index 39dc39d..608866d 100644
--- a/Modules/Setup
+++ b/Modules/Setup
@@ -172,8 +172,8 @@ time timemodule.c
#select selectmodule.c
# XML
-#_elementtree -I$(srcdir)/Modules/expat _elementtree.c
-#pyexpat -I$(srcdir)/Modules/expat expat/xmlparse.c expat/xmlrole.c expat/xmltok.c pyexpat.c
+#_elementtree _elementtree.c $(EXPAT_CFLAGS)
+#pyexpat pyexpat.c $(EXPAT_CFLAGS) $(EXPAT_LDFLAGS)
# hashing builtins
#_blake2 _blake2/blake2module.c _blake2/blake2b_impl.c _blake2/blake2s_impl.c