diff options
author | Jaromír Doleček <jdolecek@NetBSD.org> | 2017-12-17 12:56:37 +0100 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2017-12-17 12:56:37 +0100 |
commit | 11eed9f3ba7429be467b54d8407cfbd6bd7e6f3a (patch) | |
tree | bd0f6b9fd306ae910b076232776c4ea18b7056c9 /ext/pdo | |
parent | 200bf9b5d76b4ff2b17981000293213ca14d094b (diff) | |
download | php-git-11eed9f3ba7429be467b54d8407cfbd6bd7e6f3a.tar.gz |
Fixed bug #75616
PDO can be built shared on Darwin nowadays. There used to be issues
relating to symbol references between dynamically loaded shared
objects.
Diffstat (limited to 'ext/pdo')
-rwxr-xr-x | ext/pdo/config.m4 | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/ext/pdo/config.m4 b/ext/pdo/config.m4 index 786c70382a..8cbf21733d 100755 --- a/ext/pdo/config.m4 +++ b/ext/pdo/config.m4 @@ -37,20 +37,6 @@ if test "$PHP_PDO" != "no"; then PHP_PDO_PEAR_CHECK - if test "$ext_shared" = "yes" ; then - case $host_alias in - *darwin*) - AC_MSG_ERROR([ -Due to the way that loadable modules work on OSX/Darwin, you need to -compile the PDO package statically into the PHP core. - -Please follow the instructions at: http://netevil.org/node.php?nid=202 -for more detail on this issue. - ]) - ext_shared=no - ;; - esac - fi PHP_NEW_EXTENSION(pdo, pdo.c pdo_dbh.c pdo_stmt.c pdo_sql_parser.c pdo_sqlstate.c, $ext_shared) ifdef([PHP_ADD_EXTENSION_DEP], [ |