diff options
Diffstat (limited to 'package/python3/0022-Add-an-option-to-disable-the-curses-module.patch')
-rw-r--r-- | package/python3/0022-Add-an-option-to-disable-the-curses-module.patch | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/package/python3/0022-Add-an-option-to-disable-the-curses-module.patch b/package/python3/0022-Add-an-option-to-disable-the-curses-module.patch index 22f7a24945..37cf66fc12 100644 --- a/package/python3/0022-Add-an-option-to-disable-the-curses-module.patch +++ b/package/python3/0022-Add-an-option-to-disable-the-curses-module.patch @@ -1,4 +1,4 @@ -From d04ec780bf7c0825ab260bd1d6b7292141b2dcde Mon Sep 17 00:00:00 2001 +From 2d1a718b6fc386e718c26dec23633f478e8791a0 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Date: Wed, 23 Dec 2015 11:49:30 +0100 Subject: [PATCH] Add an option to disable the curses module @@ -11,10 +11,10 @@ Signed-off-by: Samuel Martin <s.martin49@gmail.com> 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/Makefile.pre.in b/Makefile.pre.in -index 0a93c27..b97c21e 100644 +index 851faa3..90a055c 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in -@@ -1186,7 +1186,7 @@ LIBSUBDIRS= \ +@@ -1212,7 +1212,7 @@ LIBSUBDIRS= \ multiprocessing multiprocessing/dummy \ unittest \ venv venv/scripts venv/scripts/posix \ @@ -23,7 +23,7 @@ index 0a93c27..b97c21e 100644 TESTSUBDIRS = test test/test_asyncio \ test/test_email test/test_email/data \ -@@ -1253,6 +1253,10 @@ TESTSUBDIRS += tkinter/test tkinter/test/test_tkinter \ +@@ -1279,6 +1279,10 @@ TESTSUBDIRS += tkinter/test tkinter/test/test_tkinter \ tkinter/test/test_ttk endif @@ -35,10 +35,10 @@ index 0a93c27..b97c21e 100644 LIBSUBDIRS += $(TESTSUBDIRS) endif diff --git a/configure.ac b/configure.ac -index 787b185..0be47b2 100644 +index d5047ec..3814ba0 100644 --- a/configure.ac +++ b/configure.ac -@@ -2912,6 +2912,15 @@ if test "$TK" = "no"; then +@@ -2994,6 +2994,15 @@ if test "$TK" = "no"; then DISABLED_EXTENSIONS="${DISABLED_EXTENSIONS} _tkinter" fi @@ -55,5 +55,5 @@ index 787b185..0be47b2 100644 AC_ARG_ENABLE(pydoc, -- -2.6.4 +2.7.4 |