python-pyasn: bump to version 1.6.0b1
[buildroot-gz.git] / package / python3 / 0026-Add-an-option-to-disable-unicodedata.patch
blob56a51789520c4871e7e8a985f9c7843b2557297c
1 From 64fa1fc3a9aea7ffba7b96d08a14df91051f2b6f Mon Sep 17 00:00:00 2001
2 From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
3 Date: Wed, 23 Dec 2015 11:50:27 +0100
4 Subject: [PATCH] Add an option to disable unicodedata
6 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 ---
8 configure.ac | 6 ++++++
9 1 file changed, 6 insertions(+)
11 diff --git a/configure.ac b/configure.ac
12 index f25733a..a7ddb2b 100644
13 --- a/configure.ac
14 +++ b/configure.ac
15 @@ -2923,6 +2923,12 @@ AC_ARG_ENABLE(nis,
16 DISABLED_EXTENSIONS="${DISABLED_EXTENSIONS} nis"
17 fi])
19 +AC_ARG_ENABLE(unicodedata,
20 + AS_HELP_STRING([--disable-unicodedata], [disable unicodedata]),
21 + [ if test "$enableval" = "no"; then
22 + DISABLED_EXTENSIONS="${DISABLED_EXTENSIONS} unicodedata"
23 + fi])
25 AC_SUBST(TK)
26 AC_ARG_ENABLE(tk,
27 AS_HELP_STRING([--disable-tk], [disable tk]),
28 --
29 2.6.4