Skip to content

Commit 3a4d0d3

Browse files
authored
Require sqlite >= 3.7.7 for URI in DSN (#7347)
SQLITE_OPEN_URI introduced in #6610 is available from sqlite version 3.7.7.
1 parent 315f409 commit 3a4d0d3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ext/pdo_sqlite/config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ if test "$PHP_PDO_SQLITE" != "no"; then
1212

1313
PHP_CHECK_PDO_INCLUDES
1414

15-
PKG_CHECK_MODULES([SQLITE], [sqlite3 > 3.7.4])
15+
PKG_CHECK_MODULES([SQLITE], [sqlite3 >= 3.7.7])
1616

1717
PHP_EVAL_INCLINE($SQLITE_CFLAGS)
1818
PHP_EVAL_LIBLINE($SQLITE_LIBS, PDO_SQLITE_SHARED_LIBADD)

ext/sqlite3/config0.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ PHP_ARG_WITH([sqlite3],
55
[yes])
66

77
if test $PHP_SQLITE3 != "no"; then
8-
PKG_CHECK_MODULES([SQLITE], [sqlite3 > 3.7.4])
8+
PKG_CHECK_MODULES([SQLITE], [sqlite3 >= 3.7.7])
99

1010
PHP_EVAL_INCLINE($SQLITE_CFLAGS)
1111
PHP_EVAL_LIBLINE($SQLITE_LIBS, SQLITE3_SHARED_LIBADD)

0 commit comments

Comments
 (0)