File tree Expand file tree Collapse file tree 1 file changed +4
-9
lines changed
Expand file tree Collapse file tree 1 file changed +4
-9
lines changed Original file line number Diff line number Diff line change 11// vim:ft=javascript
22
33// Note: The extension name is "mysqli", you enable it with "--with-mysqli".
4- // Passing value "mysqlnd" to it enables the bundled
5- // client library to connect to the MySQL server, i.e. no external MySQL
6- // client library is needed to perform the build.
74
85ARG_WITH ( "mysqli" , "MySQLi support" , "no" ) ;
96
@@ -19,10 +16,8 @@ if (PHP_MYSQLI != "no") {
1916 "mysqli_report.c " +
2017 "mysqli_warning.c" ;
2118
22- if ( PHP_MYSQLI != "no" ) {
23- EXTENSION ( "mysqli" , mysqli_source , PHP_MYSQLI_SHARED , "/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1" ) ;
24- ADD_EXTENSION_DEP ( 'mysqli' , 'mysqlnd' ) ;
25- ADD_EXTENSION_DEP ( 'mysqli' , 'spl' ) ;
26- PHP_INSTALL_HEADERS ( "ext/mysqli" , "php_mysqli_structs.h mysqli_mysqlnd.h" ) ;
27- }
19+ EXTENSION ( "mysqli" , mysqli_source , PHP_MYSQLI_SHARED , "/DZEND_ENABLE_STATIC_TSRMLS_CACHE=1" ) ;
20+ ADD_EXTENSION_DEP ( 'mysqli' , 'mysqlnd' ) ;
21+ ADD_EXTENSION_DEP ( 'mysqli' , 'spl' ) ;
22+ PHP_INSTALL_HEADERS ( "ext/mysqli" , "php_mysqli_structs.h mysqli_mysqlnd.h" ) ;
2823}
You can’t perform that action at this time.
0 commit comments