openocd: avoid documentation rebuild to fix build issues
[buildroot-gz.git] / package / python / 109-optional-unicodedata.patch
blob841f2a77b57795997646002cc0c8273bda7635e2
1 Add an option to disable unicodedata
3 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5 ---
6 configure.in | 6 ++++++
7 1 file changed, 6 insertions(+)
9 Index: b/configure.ac
10 ===================================================================
11 --- a/configure.ac
12 +++ b/configure.ac
13 @@ -2662,6 +2662,12 @@
14 DISABLED_EXTENSIONS="${DISABLED_EXTENSIONS} nis"
15 fi])
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])
23 AC_SUBST(TK)
24 AC_ARG_ENABLE(tk,
25 AS_HELP_STRING([--disable-tk], [disable tk]),