mirror of
https://github.com/php/php-src.git
synced 2025-08-19 08:49:28 +02:00
Can't test whether it works (no current >=mysql-4.1.2 available on Windows), but it should.
This commit is contained in:
parent
12c6378412
commit
7af39b1aad
1 changed files with 14 additions and 0 deletions
14
ext/mysqli/config.w32
Normal file
14
ext/mysqli/config.w32
Normal file
|
@ -0,0 +1,14 @@
|
|||
// $Id$
|
||||
// vim:ft=javascript
|
||||
|
||||
ARG_WITH("mysqli", "MySQLi support", "no");
|
||||
|
||||
if (PHP_MYSQLI != "no") {
|
||||
if (CHECK_LIB("libmysql.lib", "mysql", PHP_MYSQL) &&
|
||||
CHECK_HEADER_ADD_INCLUDE("mysql.h", "CFLAGS_MYSQL", PHP_PHP_BUILD + "\\include\\mysql;" + PHP_MYSQL)) {
|
||||
EXTENSION("mysql", "mysqli.c mysqli_api.c mysqli_fe.c mysqli_nonapi.c mysqli_prop.c mysqli_report.c");
|
||||
AC_DEFINE('HAVE_MYSQLILIB', 1, 'Have MySQLi library');
|
||||
} else {
|
||||
WARNING("mysqli not enabled; libraries and headers not found");
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue