mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
- Fix bug #55609 (mysqlnd cannot be built shared)
# This adds an option --enable-mysqlnd to explicitly built mysqlnd, like any # other extension it can be used with =shared to build mysqlnd shared; # mysqlnd will implicitly enabled when requested from another extension
This commit is contained in:
parent
1ffe46c020
commit
9554e24547
3 changed files with 12 additions and 3 deletions
1
NEWS
1
NEWS
|
@ -23,6 +23,7 @@ PHP NEWS
|
|||
mysqlnd is used). (Andrey)
|
||||
|
||||
- mysqlnd
|
||||
. Fixed bug #55609 (mysqlnd cannot be built shared). (Johannes)
|
||||
. Fixed bug #55067 (MySQL doesn't support compression - wrong config option).
|
||||
(Andrey)
|
||||
|
||||
|
|
|
@ -2,6 +2,9 @@ dnl
|
|||
dnl $Id$
|
||||
dnl config.m4 for mysqlnd driver
|
||||
|
||||
PHP_ARG_ENABLE(mysqlnd, whether to enable mysqlnd,
|
||||
[ --enable-mysqlnd Enable mysqlnd expliciely, will be done implicitly
|
||||
when required by other extensions], no, yes)
|
||||
|
||||
PHP_ARG_ENABLE(mysqlnd_compression_support, whether to disable compressed protocol support in mysqlnd,
|
||||
[ --disable-mysqlnd-compression-support
|
||||
|
@ -13,7 +16,7 @@ if test -z "$PHP_ZLIB_DIR"; then
|
|||
fi
|
||||
|
||||
dnl If some extension uses mysqlnd it will get compiled in PHP core
|
||||
if test "$PHP_MYSQLND_ENABLED" = "yes"; then
|
||||
if test "$PHP_MYSQLND" != "no" || test "$PHP_MYSQLND_ENABLED" = "yes"; then
|
||||
mysqlnd_ps_sources="mysqlnd_ps.c mysqlnd_ps_codec.c"
|
||||
mysqlnd_base_sources="mysqlnd.c mysqlnd_charset.c mysqlnd_wireprotocol.c \
|
||||
mysqlnd_loaddata.c mysqlnd_net.c mysqlnd_statistics.c \
|
||||
|
@ -27,12 +30,12 @@ if test "$PHP_MYSQLND_ENABLED" = "yes"; then
|
|||
AC_DEFINE([MYSQLND_SSL_SUPPORTED], 1, [Enable SSL support])
|
||||
|
||||
mysqlnd_sources="$mysqlnd_base_sources $mysqlnd_ps_sources"
|
||||
PHP_NEW_EXTENSION(mysqlnd, $mysqlnd_sources, no)
|
||||
PHP_NEW_EXTENSION(mysqlnd, $mysqlnd_sources, $ext_shared)
|
||||
PHP_ADD_BUILD_DIR([ext/mysqlnd], 1)
|
||||
PHP_INSTALL_HEADERS([ext/mysqlnd/])
|
||||
fi
|
||||
|
||||
if test "$PHP_MYSQLND_ENABLED" = "yes" || test "$PHP_MYSQLI" != "no"; then
|
||||
if test "$PHP_MYSQLND" != "no" || test "$PHP_MYSQLND_ENABLED" = "yes" || test "$PHP_MYSQLI" != "no"; then
|
||||
PHP_ADD_BUILD_DIR([ext/mysqlnd], 1)
|
||||
|
||||
dnl This creates a file so it has to be after above macros
|
||||
|
|
|
@ -299,6 +299,11 @@ zend_module_entry mysqlnd_module_entry = {
|
|||
};
|
||||
/* }}} */
|
||||
|
||||
/* {{{ COMPILE_DL_MYSQLND */
|
||||
#ifdef COMPILE_DL_MYSQLND
|
||||
ZEND_GET_MODULE(mysqlnd)
|
||||
#endif
|
||||
/* }}} */
|
||||
|
||||
/*
|
||||
* Local variables:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue