Skip to content

Commit

Permalink
Fix bug #75615
Browse files Browse the repository at this point in the history
Remove -I without argument in pdo_mysql config.m4.
  • Loading branch information
jdolecek-zz authored and nikic committed Dec 17, 2017
1 parent a3b5b93 commit 200bf9b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ PHP NEWS
(Nikita, Laruence)
. Fixed bug #75698 (Using @ crashes php7.2-fpm). (Nikita)

- PDO MySQL:
. Fixed bug #75615 (PDO Mysql module can't be built as module). (jdolecek)

- PGSQL:
. Fixed bug #75671 (pg_version() crashes when called on a connection to
cockroach). (magicaltux at gmail dot com)
Expand Down
2 changes: 1 addition & 1 deletion ext/pdo_mysql/config.m4
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ if test "$PHP_PDO_MYSQL" != "no"; then
fi

dnl fix after renaming to pdo_mysql
PHP_NEW_EXTENSION(pdo_mysql, pdo_mysql.c mysql_driver.c mysql_statement.c, $ext_shared,,-I$pdo_cv_inc_path -I -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1)
PHP_NEW_EXTENSION(pdo_mysql, pdo_mysql.c mysql_driver.c mysql_statement.c, $ext_shared,,-I$pdo_cv_inc_path -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1)
ifdef([PHP_ADD_EXTENSION_DEP],
[
PHP_ADD_EXTENSION_DEP(pdo_mysql, pdo)
Expand Down

0 comments on commit 200bf9b

Please sign in to comment.