gst1-plugins-base: bump to version 1.10.4
[buildroot-gz.git] / package / python3 / 0031-Add-an-option-to-disable-openssl.patch
blobd4375203b461fb54f75b21a845477b456b0a72ab
1 From: Nicolas Cavallari <nicolas.cavallari@green-communications.fr>
2 Subject: [PATCH] Add an option to disable openssl support.
4 Signed-off-by: Nicolas Cavallari <nicolas.cavallari@green-communications.fr>
5 ---
6 configure.ac | 6 ++++++
7 1 file changed, 6 insertions(+)
9 --- a/configure.ac
10 +++ b/configure.ac
11 @@ -3027,6 +3027,12 @@
12 DISABLED_EXTENSIONS="${DISABLED_EXTENSIONS} unicodedata"
13 fi])
15 +AC_ARG_ENABLE(openssl,
16 + AS_HELP_STRING([--disable-openssl], [disable openssl support]),
17 + [ if test "$enableval" = "no"; then
18 + DISABLED_EXTENSIONS="${DISABLED_EXTENSIONS} ssl _ssl _hashlib"
19 + fi])
21 AC_SUBST(TK)
22 AC_ARG_ENABLE(tk,
23 AS_HELP_STRING([--disable-tk], [disable tk]),