package/x11r7/xserver_xorg-server: bump to version 1.19.3
[buildroot-gz.git] / package / python3 / 0031-Add-an-option-to-disable-openssl-support.patch
blob784320b15e1b8deb1c61f97fc1215e8d6681959d
1 From d903da1181cedb76d8191b33aea0519844f85b22 Mon Sep 17 00:00:00 2001
2 From: Nicolas Cavallari <nicolas.cavallari@green-communications.fr>
3 Date: Tue, 7 Mar 2017 23:25:12 +0100
4 Subject: [PATCH] Add an option to disable openssl support.
6 Signed-off-by: Nicolas Cavallari <nicolas.cavallari@green-communications.fr>
7 ---
8 configure.ac | 6 ++++++
9 1 file changed, 6 insertions(+)
11 diff --git a/configure.ac b/configure.ac
12 index 16a827c..65c0ce0 100644
13 --- a/configure.ac
14 +++ b/configure.ac
15 @@ -3027,6 +3027,12 @@ AC_ARG_ENABLE(unicodedata,
16 DISABLED_EXTENSIONS="${DISABLED_EXTENSIONS} unicodedata"
17 fi])
19 +AC_ARG_ENABLE(openssl,
20 + AS_HELP_STRING([--disable-openssl], [disable openssl support]),
21 + [ if test "$enableval" = "no"; then
22 + DISABLED_EXTENSIONS="${DISABLED_EXTENSIONS} ssl _ssl _hashlib"
23 + fi])
25 AC_SUBST(TK)
26 AC_ARG_ENABLE(tk,
27 AS_HELP_STRING([--disable-tk], [disable tk]),
28 --
29 2.7.4