python-dataproperty: bump version to 0.17.0
[buildroot-gz.git] / package / python3 / 0026-Add-an-option-to-disable-unicodedata.patch
blobf9ecf6572b4b2b6f847e3874d3cf95c5a6e3979f
1 From 8f0bf1aac225c2a4465baeefc3e4538c27c497e7 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 98d1332..b1a1f39 100644
13 --- a/configure.ac
14 +++ b/configure.ac
15 @@ -3005,6 +3005,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.7.4