python-werkzeug: bump to version 0.11.15
[buildroot-gz.git] / package / python / 113-optional-zlib.patch
blob652a586eae05c78f693d831b146bb51f7b9a2381
1 Add an option to disable the zlib module
3 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4 ---
5 configure.in | 6 ++++++
6 1 file changed, 6 insertions(+)
8 Index: b/configure.ac
9 ===================================================================
10 --- a/configure.ac
11 +++ b/configure.ac
12 @@ -2674,6 +2674,12 @@
13 DISABLED_EXTENSIONS="${DISABLED_EXTENSIONS} bz2"
14 fi])
16 +AC_ARG_ENABLE(zlib,
17 + AS_HELP_STRING([--disable-zlib], [disable ZLIB]),
18 + [ if test "$enableval" = "no"; then
19 + DISABLED_EXTENSIONS="${DISABLED_EXTENSIONS} zlib"
20 + fi])
22 AC_ARG_ENABLE(dbm,
23 AS_HELP_STRING([--disable-dbm], [disable DBM]),
24 [ if test "$enableval" = "no"; then