]> Git Repo - buildroot-mgba.git/blame - package/python3/python3-109-optional-unicodedata.patch
package/rpi-userland: bump version
[buildroot-mgba.git] / package / python3 / python3-109-optional-unicodedata.patch
CommitLineData
f1c092da
MR
1Add an option to disable unicodedata
2
3Signed-off-by: Thomas Petazzoni <[email protected]>
4
5---
6 configure.ac | 6 ++++++
7 1 file changed, 6 insertions(+)
8
0d327c26 9Index: b/configure.ac
f1c092da 10===================================================================
0d327c26
TP
11--- a/configure.ac
12+++ b/configure.ac
13@@ -2695,6 +2695,12 @@
f1c092da
MR
14 DISABLED_EXTENSIONS="${DISABLED_EXTENSIONS} nis"
15 fi])
16
17+AC_ARG_ENABLE(unicodedata,
18+ AS_HELP_STRING([--disable-unicodedata], [disable unicodedata]),
19+ [ if test "$enableval" = "no"; then
20+ DISABLED_EXTENSIONS="${DISABLED_EXTENSIONS} unicodedata"
21+ fi])
22+
23 AC_SUBST(TK)
24 AC_ARG_ENABLE(tk,
25 AS_HELP_STRING([--disable-tk], [disable tk]),
This page took 0.314123 seconds and 4 git commands to generate.