mirror of
https://github.com/php/php-src.git
synced 2025-01-20 18:53:37 +08:00
Support for new Win32 build bliss.
This commit is contained in:
parent
1982ae6246
commit
dea716a4e1
14
ext/mysql/config.w32
Normal file
14
ext/mysql/config.w32
Normal file
@ -0,0 +1,14 @@
|
||||
// $Id$
|
||||
// vim:ft=javascript
|
||||
|
||||
ARG_WITH("mysql", "MySQL support", "no");
|
||||
|
||||
if (PHP_MYSQL != "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", "php_mysql.c");
|
||||
AC_DEFINE('HAVE_MYSQL', 1, 'Have MySQL library');
|
||||
} else {
|
||||
WARNING("mysql not enabled; libraries and headers not found");
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user