The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / python / 113-optional-zlib.patch
1 Add an option to disable the zlib module
2
3 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4 ---
5  configure.in |    6 ++++++
6  1 file changed, 6 insertions(+)
7
8 Index: b/configure.ac
9 ===================================================================
10 --- a/configure.ac
11 +++ b/configure.ac
12 @@ -2668,6 +2668,12 @@
13              DISABLED_EXTENSIONS="${DISABLED_EXTENSIONS} bz2"
14           fi])
15  
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])
21 +
22  AC_ARG_ENABLE(dbm,
23         AS_HELP_STRING([--disable-dbm], [disable DBM]),
24         [ if test "$enableval" = "no"; then