Skip to content

Commit 913e7bf

Browse files
authored
Merge pull request #694 from jluebbe/sqlite-dep
avoid unnecessary check for sqlite3 binary
2 parents f4661af + 88d9683 commit 913e7bf

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

m4/acx_sqlite3.m4

-6
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,13 @@ AC_DEFUN([ACX_SQLITE3],[
44
[
55
SQLITE3_INCLUDES="-I$withval/include"
66
SQLITE3_LIBDIRS="-L$withval/lib"
7-
AC_PATH_PROGS(SQLITE3, sqlite3, sqlite3, $withval/bin)
87
98
],[
109
SQLITE3_INCLUDES=""
1110
SQLITE3_LIBDIRS=""
12-
AC_PATH_PROGS(SQLITE3, sqlite3, sqlite3, $PATH)
1311
])
1412
1513
16-
if ! test -x "$SQLITE3"; then
17-
AC_MSG_ERROR([sqlite3 command not found])
18-
fi
19-
2014
AC_MSG_CHECKING(what are the SQLite3 includes)
2115
AC_MSG_RESULT($SQLITE3_INCLUDES)
2216

0 commit comments

Comments
 (0)