Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Sebastian Schrader
Kea
Commits
4e7c1fb3
Commit
4e7c1fb3
authored
Sep 23, 2013
by
Jeremy C. Reed
Browse files
[master]Merge branch 'trac2939'
to add check for python sqlite3 module
parents
7759a99d
68b075b7
Changes
2
Hide whitespace changes
Inline
Side-by-side
configure.ac
View file @
4e7c1fb3
...
...
@@ -1093,6 +1093,8 @@ fi
AX_SQLITE3_FOR_BIND10
if test "x$have_sqlite" = "xyes" ; then
enable_features="$enable_features SQLite3"
AX_PYTHON_SQLITE3
fi
#
...
...
m4macros/ax_python_sqlite3.m4
0 → 100644
View file @
4e7c1fb3
dnl @synopsis AX_PYTHON_SQLITE3
dnl
dnl Test for the Python sqlite3 module used by BIND10's datasource
dnl
AC_DEFUN([AX_PYTHON_SQLITE3], [
# Check for the python sqlite3 module
AC_MSG_CHECKING(for python sqlite3 module)
if "$PYTHON" -c 'import sqlite3' 2>/dev/null ; then
AC_MSG_RESULT(ok)
else
AC_MSG_RESULT(missing)
AC_MSG_ERROR([Missing sqlite3 python module.])
fi
])dnl AX_PYTHON_SQLITE3
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment