Skip to content

Commit 3f9ef46

Browse files
author
Release Manager
committed
Trac #29002: spkg-configure.m4 for sqlite
SQLite is another package that many people will have installed (firefox uses it, for example) and that has few dependencies in Sage (only readline). libsqlite3 is used by Python during its build. Some Python packages need sufficiently new versions. We set the lower bound slightly lower than the current version available on XCode. We detect it using `AC_RUN_IFELSE` because on macOS without homebrew, there is no pkgconfig file. URL: https://trac.sagemath.org/29002 Reported by: mjo Ticket author(s): Michael Orlitzky, Matthias Koeppe Reviewer(s): Dima Pasechnik, Matthias Koeppe
2 parents 59f6a83 + b261b31 commit 3f9ef46

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

build/pkgs/sqlite/spkg-configure.m4

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
SAGE_SPKG_CONFIGURE([sqlite], [
2+
m4_pushdef([SAGE_SQLITE3_MIN_VERSION_MAJOR], [3])
3+
m4_pushdef([SAGE_SQLITE3_MIN_VERSION_MINOR], [8])
4+
m4_pushdef([SAGE_SQLITE3_MIN_VERSION_MICRO], [7])
5+
m4_pushdef([SAGE_SQLITE3_MIN_VERSION], [SAGE_SQLITE3_MIN_VERSION_MAJOR.SAGE_SQLITE3_MIN_VERSION_MINOR.SAGE_SQLITE3_MIN_VERSION_MICRO])
6+
AC_MSG_CHECKING([libsqlite3 >= sqlite3_min_version])
7+
dnl https://www.sqlite.org/c3ref/libversion.html
8+
dnl https://www.sqlite.org/c3ref/c_source_id.html
9+
SQLITE_SAVED_LIBS="$LIBS"
10+
LIBS="$LIBS -lsqlite3"
11+
AC_RUN_IFELSE([
12+
AC_LANG_PROGRAM([[
13+
#include <sqlite3.h>
14+
#include <assert.h>
15+
#include <stdlib.h>
16+
#include <string.h>
17+
]],
18+
[[
19+
assert( strcmp(sqlite3_libversion(),SQLITE_VERSION)==0 );
20+
if (SQLITE_VERSION_NUMBER < ]]SAGE_SQLITE3_MIN_VERSION_MAJOR[[*1000000 + ]]SAGE_SQLITE3_MIN_VERSION_MINOR[[*1000 + ]]SAGE_SQLITE3_MIN_VERSION_MICRO[[)
21+
exit(1);
22+
else
23+
exit(0);
24+
]])
25+
],
26+
[AC_MSG_RESULT([yes])],
27+
[AC_MSG_RESULT([no])
28+
LIBS="$SQLITE_SAVED_LIBS"
29+
sage_spkg_install_sqlite=yes])
30+
m4_popdef([SAGE_SQLITE3_MIN_VERSION_MAJOR])
31+
m4_popdef([SAGE_SQLITE3_MIN_VERSION_MINOR])
32+
m4_popdef([SAGE_SQLITE3_MIN_VERSION_MICRO])
33+
m4_popdef([SAGE_SQLITE3_MIN_VERSION])
34+
])

0 commit comments

Comments
 (0)