1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- From aba9392bf6bf68cfd63b1cecfdd3e96d5de2a0b7 Mon Sep 17 00:00:00 2001
- From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
- Date: Wed, 22 Feb 2017 17:20:45 -0800
- Subject: [PATCH] Add option to disable the sqlite3 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 | 5 ++++-
- configure.ac | 9 +++++++++
- 2 files changed, 13 insertions(+), 1 deletion(-)
- diff --git a/Makefile.pre.in b/Makefile.pre.in
- index 1a0ab0de426..1c7b38ce4f6 100644
- --- a/Makefile.pre.in
- +++ b/Makefile.pre.in
- @@ -1933,7 +1933,6 @@ LIBSUBDIRS= asyncio \
- multiprocessing multiprocessing/dummy \
- re \
- site-packages \
- - sqlite3 \
- tkinter \
- tomllib \
- turtledemo \
- @@ -2079,6 +2078,10 @@ TESTSUBDIRS += lib2to3/tests \
- lib2to3/tests/data/fixers/myfixes
- endif
-
- +ifeq (@SQLITE3@,yes)
- +LIBSUBDIRS += sqlite3
- +endif
- +
- TEST_MODULES=@TEST_MODULES@
- libinstall: all $(srcdir)/Modules/xxmodule.c
- @for i in $(SCRIPTDIR) $(LIBDEST); \
- diff --git a/configure.ac b/configure.ac
- index bf91fb2f824..0013afc9aad 100644
- --- a/configure.ac
- +++ b/configure.ac
- @@ -4222,6 +4222,15 @@ AS_VAR_IF([posix_threads], [stub], [
- AC_DEFINE([HAVE_PTHREAD_STUBS], [1], [Define if platform requires stubbed pthreads support])
- ])
-
- +AC_SUBST(SQLITE3)
- +AC_ARG_ENABLE(sqlite3,
- + AS_HELP_STRING([--disable-sqlite3], [disable sqlite3]),
- + [ SQLITE3="${enableval}" ], [ SQLITE3=yes ])
- +
- +if test "$SQLITE3" = "no" ; then
- + DISABLED_EXTENSIONS="${DISABLED_EXTENSIONS} _sqlite3"
- +fi
- +
- AC_SUBST(PYDOC)
-
- AC_ARG_ENABLE(pydoc,
- --
- 2.44.0
|