Skip to content

Commit a01b5d6

Browse files
committed
Document when SQLite3 functions got introduced
1 parent f998516 commit a01b5d6

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

cmake/ext/pdo_sqlite/cmake/config.h.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
/* Define to 1 if the PHP extension 'pdo_sqlite' is available. */
22
#cmakedefine HAVE_PDO_SQLITELIB 1
33

4-
/* Define to 1 if SQLite library has the 'sqlite3_close_v2' function. */
4+
/* Define to 1 if SQLite library has the 'sqlite3_close_v2' function. Available
5+
since SQLite 3.7.14. */
56
#cmakedefine HAVE_SQLITE3_CLOSE_V2 1
67

78
/* Define to 1 if SQLite library was compiled with the

cmake/ext/sqlite3/cmake/config.h.in

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
/* Define to 1 if the PHP extension 'sqlite3' is available. */
22
#cmakedefine HAVE_SQLITE3 1
33

4-
/* Define to 1 if SQLite library has the 'sqlite3_errstr' function. */
4+
/* Define to 1 if SQLite library has the 'sqlite3_errstr' function. Available
5+
since SQLite 3.7.15. */
56
#cmakedefine HAVE_SQLITE3_ERRSTR 1
67

7-
/* Define to 1 if SQLite library has the 'sqlite3_expanded_sql' function. */
8+
/* Define to 1 if SQLite library has the 'sqlite3_expanded_sql' function.
9+
Available since SQLite 3.14.0. */
810
#cmakedefine HAVE_SQLITE3_EXPANDED_SQL 1
911

1012
/* Define to 1 if SQLite library was compiled with the

0 commit comments

Comments
 (0)