open-plc-utils: new package
[buildroot-gz.git] / package / python / 111-optional-ssl.patch
blob72891cd5961ac249e7e8daa699ae455364126d72
1 Add an option to disable the ssl module
3 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5 ---
6 configure.in | 6 ++++++
7 1 file changed, 6 insertions(+)
9 Index: b/configure.ac
10 ===================================================================
11 --- a/configure.ac
12 +++ b/configure.ac
13 @@ -2656,6 +2656,12 @@
14 DISABLED_EXTENSIONS="${DISABLED_EXTENSIONS} nis"
15 fi])
17 +AC_ARG_ENABLE(ssl,
18 + AS_HELP_STRING([--disable-ssl], [disable SSL]),
19 + [ if test "$enableval" = "no"; then
20 + DISABLED_EXTENSIONS="${DISABLED_EXTENSIONS} ssl"
21 + fi])
23 AC_ARG_ENABLE(dbm,
24 AS_HELP_STRING([--disable-dbm], [disable DBM]),
25 [ if test "$enableval" = "no"; then