1 From 570e1e81484d9bcbd30a7719b07d02785a5cab24 Mon Sep 17 00:00:00 2001
2 From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
3 Date: Tue, 7 Mar 2017 22:28:06 +0100
4 Subject: [PATCH] Add option to disable the sqlite3 module
6 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 Signed-off-by: Samuel Martin <s.martin49@gmail.com>
9 Makefile.pre.in | 7 +++++--
10 configure.ac | 9 +++++++++
11 2 files changed, 14 insertions(+), 2 deletions(-)
13 diff --git a/Makefile.pre.in b/Makefile.pre.in
14 index b2a0490..974a052 100644
17 @@ -1043,7 +1043,6 @@ LIBSUBDIRS= lib-tk site-packages \
19 ensurepip ensurepip/_bundled \
22 logging bsddb csv importlib wsgiref \
23 ctypes ctypes/macholib \
24 idlelib idlelib/Icons \
25 @@ -1061,7 +1060,6 @@ TESTSUBDIRS = lib-tk/test lib-tk/test/test_tkinter \
27 email/test email/test/data \
33 @@ -1084,6 +1082,11 @@ TESTSUBDIRS += lib2to3/tests \
34 lib2to3/tests/data/fixers/myfixes
38 +LIBSUBDIRS += sqlite3
39 +TESTSUBDIRS += sqlite3/test
42 libinstall: build_all $(srcdir)/Lib/$(PLATDIR) $(srcdir)/Modules/xxmodule.c
43 @for i in $(SCRIPTDIR) $(LIBDEST); \
45 diff --git a/configure.ac b/configure.ac
46 index 270f337..e9e1897 100644
49 @@ -2805,6 +2805,15 @@ if test "$posix_threads" = "yes"; then
50 AC_CHECK_FUNCS(pthread_atfork)
54 +AC_ARG_ENABLE(sqlite3,
55 + AS_HELP_STRING([--disable-sqlite3], [disable sqlite3]),
56 + [ SQLITE3="${enableval}" ], [ SQLITE3=yes ])
58 +if test "$SQLITE3" = "no" ; then
59 + DISABLED_EXTENSIONS="${DISABLED_EXTENSIONS} _sqlite3"