2016-01-04 19:23:28 +01:00
|
|
|
From 4a32e709d128886dab10e59fad60fde005933aff Mon Sep 17 00:00:00 2001
|
|
|
|
From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
|
|
|
|
Date: Wed, 23 Dec 2015 11:50:27 +0100
|
|
|
|
Subject: [PATCH] Add an option to disable unicodedata
|
2013-05-29 10:36:57 +02:00
|
|
|
|
|
|
|
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
|
|
|
|
---
|
2016-01-04 19:23:28 +01:00
|
|
|
configure.ac | 6 ++++++
|
2013-05-29 10:36:57 +02:00
|
|
|
1 file changed, 6 insertions(+)
|
|
|
|
|
2016-01-04 19:23:28 +01:00
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
|
|
index 4fb35a8..58f2dd9 100644
|
2014-02-18 21:40:01 +01:00
|
|
|
--- a/configure.ac
|
|
|
|
+++ b/configure.ac
|
2016-01-04 19:23:28 +01:00
|
|
|
@@ -2687,6 +2687,12 @@ AC_ARG_ENABLE(nis,
|
2013-05-29 10:36:57 +02:00
|
|
|
DISABLED_EXTENSIONS="${DISABLED_EXTENSIONS} nis"
|
|
|
|
fi])
|
|
|
|
|
|
|
|
+AC_ARG_ENABLE(unicodedata,
|
|
|
|
+ AS_HELP_STRING([--disable-unicodedata], [disable unicodedata]),
|
|
|
|
+ [ if test "$enableval" = "no"; then
|
|
|
|
+ DISABLED_EXTENSIONS="${DISABLED_EXTENSIONS} unicodedata"
|
|
|
|
+ fi])
|
|
|
|
+
|
|
|
|
AC_SUBST(TK)
|
|
|
|
AC_ARG_ENABLE(tk,
|
|
|
|
AS_HELP_STRING([--disable-tk], [disable tk]),
|
2016-01-04 19:23:28 +01:00
|
|
|
--
|
|
|
|
2.6.4
|
|
|
|
|