]> granicus.if.org Git - php/commitdiff
Fix bug #75615
authorJaromír Doleček <jdolecek@NetBSD.org>
Sun, 17 Dec 2017 11:46:28 +0000 (12:46 +0100)
committerNikita Popov <nikita.ppv@gmail.com>
Sun, 17 Dec 2017 11:47:35 +0000 (12:47 +0100)
Remove -I without argument in pdo_mysql config.m4.

NEWS
ext/pdo_mysql/config.m4

diff --git a/NEWS b/NEWS
index 2a8a39362babdcec79a9d477ba12de2bf471889e..b054c19a6f64be50297d0e94d10cf4206d56dc41 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -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)
index c165fb6b514c229708eaa4430bf627f111ce783e..f787cdf7fd259c23d00e863d70633f20cfa30eff 100755 (executable)
@@ -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)