diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2013-10-02 08:29:06 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2013-10-02 08:46:39 +0200 |
commit | 275f4e494cacd403d28b01f8e3356a6669ef8e13 (patch) | |
tree | a5ace7d893a5ff335038e5db9f72d4cf33bd60d5 /m4 | |
parent | 29f048816a31422685c44085ac20e45d97f95ecf (diff) |
Add support for SQLite 3.3.6
That's what is still shipped with RHEL5.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/libsqlite.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/libsqlite.m4 b/m4/libsqlite.m4 index a75062c..4bbe9a1 100644 --- a/m4/libsqlite.m4 +++ b/m4/libsqlite.m4 @@ -24,9 +24,9 @@ int main () { sqlite3* handle; - sqlite3_open_v2 ("", &handle, 0, 0); + sqlite3_open ("", &handle); sqlite3_stmt* stmt; - sqlite3_prepare_v2 (handle, "", 0, &stmt, 0); + sqlite3_prepare (handle, "", 0, &stmt, 0); sqlite3_finalize (stmt); sqlite3_close (handle); } |