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:29:06 +0200 |
commit | b3a299fbbd80e69554b37d0ae30cf2c45a98d1a6 (patch) | |
tree | 89055429d81c77fd6104fc07fa854f734657a408 /m4/libsqlite.m4 | |
parent | 29b45e1658840b0ce5f67529b46cad5d595433c4 (diff) |
Add support for SQLite 3.3.6
That's what is still shipped with RHEL5.
Diffstat (limited to 'm4/libsqlite.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); } |