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 1
1
// vim:ft=javascript
2
2
3
3
// 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.
7
4
8
5
ARG_WITH ( "mysqli" , "MySQLi support" , "no" ) ;
9
6
@@ -19,10 +16,8 @@ if (PHP_MYSQLI != "no") {
19
16
"mysqli_report.c " +
20
17
"mysqli_warning.c" ;
21
18
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" ) ;
28
23
}
You can’t perform that action at this time.
0 commit comments