File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ tar xfz "${SQLITE_AUTOCONF_ROOT}.tar.gz"
2323pushd " ${SQLITE_AUTOCONF_ROOT} "
2424# add rpath
2525sed -i " s|^Libs:|Libs: -Wl,--enable-new-dtags,-rpath=\$ {libdir} |g" sqlite3.pc.in
26- DESTDIR=/manylinux-rootfs do_standard_install --prefix=${PREFIX}
26+ DESTDIR=/manylinux-rootfs do_standard_install --prefix=${PREFIX} --enable-all
2727popd
2828rm -rf " ${SQLITE_AUTOCONF_ROOT} " " ${SQLITE_AUTOCONF_ROOT} .tar.gz"
2929
Original file line number Diff line number Diff line change @@ -10,6 +10,11 @@ def test_sqlite3(self):
1010 print (f"{ sqlite3 .sqlite_version = } " , end = " " , flush = True )
1111 assert sqlite3 .sqlite_version_info [0 :2 ] >= (3 , 50 )
1212
13+ # When the extension is not installed, it raises:
14+ # sqlite3.OperationalError: no such module: fts5
15+ conn = sqlite3 .connect (":memory:" )
16+ conn .execute ("create virtual table fts5test using fts5 (data);" )
17+
1318 def test_tkinter (self ):
1419 # Make sure tkinter module can be loaded properly
1520 import tkinter as tk
You can’t perform that action at this time.
0 commit comments