memcached: bump version to 1.4.36
[buildroot-gz.git] / package / python / 0033-Add-an-option-to-disable-readline-module.patch
blobade729fb37df1a1f7017cfb1909c268aa81c01f8
1 From 6b461f698bd33b3493207baf79f4ee02286be8e8 Mon Sep 17 00:00:00 2001
2 From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
3 Date: Tue, 7 Mar 2017 22:33:55 +0100
4 Subject: [PATCH] Add an option to disable readline module
6 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 ---
8 configure.ac | 6 ++++++
9 1 file changed, 6 insertions(+)
11 diff --git a/configure.ac b/configure.ac
12 index 854724d..0a06497 100644
13 --- a/configure.ac
14 +++ b/configure.ac
15 @@ -2846,6 +2846,12 @@ AC_ARG_ENABLE(hashlib,
16 DISABLED_EXTENSIONS="${DISABLED_EXTENSIONS} _hashlib"
17 fi])
19 +AC_ARG_ENABLE(readline,
20 + AS_HELP_STRING([--disable-readline], [disable readline]),
21 + [ if test "$enableval" = "no"; then
22 + DISABLED_EXTENSIONS="${DISABLED_EXTENSIONS} readline"
23 + fi])
25 AC_ARG_ENABLE(bz2,
26 AS_HELP_STRING([--disable-bz2], [disable BZIP2]),
27 [ if test "$enableval" = "no"; then
28 --
29 2.7.4