Skip to content

Commit 6de9740

Browse files
committed
Remove unused sqlite symbols
- HAVE_SQLITE3_KEY is no longer used in php-src - SQLITE_ENABLE_COLUMN_METADATA is no longer used in php-src Closes GH-4443
1 parent 81fd1c5 commit 6de9740

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

ext/pdo_sqlite/config.m4

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,6 @@ if test "$PHP_PDO_SQLITE" != "no"; then
2323
AC_MSG_ERROR([Please install SQLite 3.7.4 first or check libsqlite3 is present])
2424
])
2525

26-
PHP_CHECK_LIBRARY(sqlite3, sqlite3_key, [
27-
AC_DEFINE(HAVE_SQLITE3_KEY, 1, [have commercial sqlite3 with crypto support])
28-
])
29-
3026
PHP_CHECK_LIBRARY(sqlite3, sqlite3_close_v2, [
3127
AC_DEFINE(HAVE_SQLITE3_CLOSE_V2, 1, [have sqlite3_close_v2])
3228
])

ext/sqlite3/config0.m4

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,6 @@ if test $PHP_SQLITE3 != "no"; then
1616
AC_MSG_ERROR([Please install SQLite 3.7.4 first or check libsqlite3 is present])
1717
])
1818

19-
PHP_CHECK_LIBRARY(sqlite3, sqlite3_key, [
20-
AC_DEFINE(HAVE_SQLITE3_KEY, 1, [have commercial sqlite3 with crypto support])
21-
])
22-
23-
PHP_CHECK_LIBRARY(sqlite3, sqlite3_column_table_name, [
24-
AC_DEFINE(SQLITE_ENABLE_COLUMN_METADATA, 1, [have sqlite3 with column metadata enabled])
25-
])
26-
2719
PHP_CHECK_LIBRARY(sqlite3, sqlite3_errstr, [
2820
AC_DEFINE(HAVE_SQLITE3_ERRSTR, 1, [have sqlite3_errstr function])
2921
])

0 commit comments

Comments
 (0)