1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
From: Stuart Prescott <stuart@debian.org>
Date: Fri, 7 Nov 2025 13:48:32 +1100
Subject: Include C extensions when building.
---
setup.cfg | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/setup.cfg b/setup.cfg
index 9086d39..6d0ab7e 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -2,11 +2,11 @@
# In this section you can specify which c extension modules should be built
# C extension module for fast t1font decoding and encoding
-build_t1code=0
+build_t1code=1
# Python bindings for the kpathsea library. You need the kpathsea header
# and library and you may need to specify their location below.
-build_pykpathsea=0
+build_pykpathsea=1
[build_ext]
# additional include and library directories:
|