summaryrefslogtreecommitdiff
path: root/ext/pdo_sqlite
diff options
context:
space:
mode:
authorPeter Kokot <peterkokot@gmail.com>2019-07-14 22:24:21 +0200
committerPeter Kokot <peterkokot@gmail.com>2019-07-14 22:24:21 +0200
commit94421e5724e1942499d024ae7537a329fe426133 (patch)
tree117bfadf3088cfd4c13ab433d357c0ac40ccf450 /ext/pdo_sqlite
parente39296d10bffaaf792440c82f61662268c748a93 (diff)
downloadphp-git-94421e5724e1942499d024ae7537a329fe426133.tar.gz
Remove conditional calls of always available macros
These checks were once relevant for these extensions in PECL and PHP versions without availability of the checked macros. Closes GH-4405
Diffstat (limited to 'ext/pdo_sqlite')
-rw-r--r--ext/pdo_sqlite/config.m45
1 files changed, 1 insertions, 4 deletions
diff --git a/ext/pdo_sqlite/config.m4 b/ext/pdo_sqlite/config.m4
index c45d73f526..873dd36544 100644
--- a/ext/pdo_sqlite/config.m4
+++ b/ext/pdo_sqlite/config.m4
@@ -42,8 +42,5 @@ if test "$PHP_PDO_SQLITE" != "no"; then
dnl Solaris fix
PHP_CHECK_LIBRARY(rt, fdatasync, [PHP_ADD_LIBRARY(rt,, PDO_SQLITE_SHARED_LIBADD)])
- ifdef([PHP_ADD_EXTENSION_DEP],
- [
- PHP_ADD_EXTENSION_DEP(pdo_sqlite, pdo)
- ])
+ PHP_ADD_EXTENSION_DEP(pdo_sqlite, pdo)
fi