12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- From 962deb43f5f340a8472d432ae8e6d61186f9040e Mon Sep 17 00:00:00 2001
- From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
- Date: Wed, 22 Feb 2017 17:31:51 -0800
- Subject: [PATCH] Add an option to disable the curses module
- Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
- Signed-off-by: Samuel Martin <s.martin49@gmail.com>
- [ Andrey Smirnov: ported to Python 3.6 ]
- Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
- [ Adam Duskett: ported to Python 3.10.0 ]
- Signed-off-by: Adam Duskett <aduskett@gmail.com>
- ---
- Makefile.pre.in | 4 +++-
- configure.ac | 9 +++++++++
- 2 files changed, 12 insertions(+), 1 deletion(-)
- diff --git a/Makefile.pre.in b/Makefile.pre.in
- index c968113..f89f155 100644
- --- a/Makefile.pre.in
- +++ b/Makefile.pre.in
- @@ -1432,7 +1432,6 @@ LIBSUBDIRS= asyncio \
- concurrent concurrent/futures \
- csv \
- ctypes ctypes/macholib \
- - curses \
- dbm \
- distutils distutils/command \
- email email/mime \
- @@ -1546,6 +1545,9 @@ TESTSUBDIRS += tkinter/test tkinter/test/test_tkinter \
- tkinter/test/test_ttk
- endif
-
- +ifeq (@CURSES@,yes)
- +LIBSUBDIRS += curses
- +endif
-
- TEST_MODULES=@TEST_MODULES@
- libinstall: build_all $(srcdir)/Modules/xxmodule.c
- diff --git a/configure.ac b/configure.ac
- index dc76dff..4f1cda5 100644
- --- a/configure.ac
- +++ b/configure.ac
- @@ -3391,6 +3391,15 @@ if test "$TK" = "no"; then
- DISABLED_EXTENSIONS="${DISABLED_EXTENSIONS} _tkinter"
- fi
-
- +AC_SUBST(CURSES)
- +AC_ARG_ENABLE(curses,
- + AS_HELP_STRING([--disable-curses], [disable curses]),
- + [ CURSES="${enableval}" ], [ CURSES=yes ])
- +
- +if test "$CURSES" = "no"; then
- + DISABLED_EXTENSIONS="${DISABLED_EXTENSIONS} _curses _curses_panel"
- +fi
- +
- AC_SUBST(PYDOC)
-
- AC_ARG_ENABLE(pydoc,
- --
- 2.30.2
|