diff options
author | Peter Kokot <peterkokot@gmail.com> | 2019-07-29 21:12:40 +0200 |
---|---|---|
committer | Peter Kokot <peterkokot@gmail.com> | 2019-07-30 22:06:23 +0200 |
commit | 09b108246a8c1277d37b3d6c0ac6e5544f88d317 (patch) | |
tree | 5a55c538ad0ddcdd678a00acc63a4d906e50d415 /ext/pdo_sqlite | |
parent | 053df4ac3b82a27975c8ffe97604e5e2056f2bb4 (diff) | |
download | php-git-09b108246a8c1277d37b3d6c0ac6e5544f88d317.tar.gz |
Fix #78348: Remove -lrt from pdo_sqlite.so
The fdatasync check has been removed since PHP 5.3.
The Solaris fix was introduced via
8d63360fc40dec579af5b5f455ef02b85caff5c5
and is today no longer relevant since the sqlite library is neither
bundled in php-src anymore neither the check needs to be done via the
PHP build system.
Closes GH-4485
Diffstat (limited to 'ext/pdo_sqlite')
-rw-r--r-- | ext/pdo_sqlite/config.m4 | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ext/pdo_sqlite/config.m4 b/ext/pdo_sqlite/config.m4 index 562ab438f7..4b1f543056 100644 --- a/ext/pdo_sqlite/config.m4 +++ b/ext/pdo_sqlite/config.m4 @@ -35,8 +35,5 @@ if test "$PHP_PDO_SQLITE" != "no"; then PHP_NEW_EXTENSION(pdo_sqlite, pdo_sqlite.c sqlite_driver.c sqlite_statement.c, $ext_shared,,-I$pdo_cv_inc_path) - dnl Solaris fix - PHP_CHECK_LIBRARY(rt, fdatasync, [PHP_ADD_LIBRARY(rt,, PDO_SQLITE_SHARED_LIBADD)]) - PHP_ADD_EXTENSION_DEP(pdo_sqlite, pdo) fi |