26 lines
1.4 KiB
Diff
26 lines
1.4 KiB
Diff
diff --git a/build/m4/ax_lib_sqlite3.m4 b/build/m4/ax_lib_sqlite3.m4
|
|
index 5d5c3a8d..fcb1f3c1 100644
|
|
--- a/build/m4/ax_lib_sqlite3.m4
|
|
+++ b/build/m4/ax_lib_sqlite3.m4
|
|
@@ -88,7 +88,7 @@ AC_DEFUN([AX_LIB_SQLITE3],
|
|
ac_sqlite3_cppflags="-I$ac_sqlite3_path/include"
|
|
AC_MSG_RESULT([explicitly set; $ac_sqlite3_path])
|
|
else
|
|
- for ac_sqlite3_path_tmp in /usr /usr/local /opt ; do
|
|
+ for ac_sqlite3_path_tmp in /usr /usr/local /opt $lt_sysroot ; do
|
|
if test -f "$ac_sqlite3_path_tmp/include/$ac_sqlite3_header" \
|
|
&& test -r "$ac_sqlite3_path_tmp/include/$ac_sqlite3_header"; then
|
|
ac_sqlite3_path=$ac_sqlite3_path_tmp
|
|
@@ -159,9 +159,9 @@ AC_DEFUN([AX_LIB_SQLITE3],
|
|
dnl Retrieve SQLite release version
|
|
if test "x$ac_sqlite3_header_path" != "x"; then
|
|
ac_sqlite3_version=`cat $ac_sqlite3_header_path \
|
|
- | grep '#define.*SQLITE_VERSION.*\"' | sed -e 's/.* "//' \
|
|
+ | grep '#define.*SQLITE_VERSION.*\"' | tail -n 1 | sed -e 's/.* "//' \
|
|
| sed -e 's/"//'`
|
|
- if test $ac_sqlite3_version != ""; then
|
|
+ if test "$ac_sqlite3_version" != ""; then
|
|
SQLITE3_VERSION=$ac_sqlite3_version
|
|
else
|
|
AC_MSG_WARN([Cannot find SQLITE_VERSION macro in sqlite3.h header to retrieve SQLite version!])
|