1From 15490e1576d5836a7afc5a3eca75e087bb3f032e Mon Sep 17 00:00:00 2001
2From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
3Date: Wed, 23 Dec 2015 11:50:27 +0100
4Subject: [PATCH] Add an option to disable unicodedata
5
6Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7---
8 configure.ac | 6 ++++++
9 1 file changed, 6 insertions(+)
10
11diff --git a/configure.ac b/configure.ac
12index 2faadb34f65..cb7e980e5b5 100644
13--- a/configure.ac
14+++ b/configure.ac
15@@ -4251,6 +4251,12 @@ AC_ARG_ENABLE(nis,
16     	     DISABLED_EXTENSIONS="${DISABLED_EXTENSIONS} nis"
17   	  fi])
18
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])
24+
25 AC_SUBST(TK)
26 AC_ARG_ENABLE(tk,
27 	AS_HELP_STRING([--disable-tk], [disable tk]),
28--
292.44.0
30
31