mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
Fix extension name
This commit is contained in:
parent
ce8331f9a5
commit
d16571328f
@ -13,7 +13,7 @@ AC_DEFUN(MYSQL_LIB_CHK, [
|
||||
])
|
||||
|
||||
PHP_ARG_WITH(pdo-mysql, for MySQL support,
|
||||
[ --with-pdo-smysql[=DIR] Include MySQL support. DIR is the MySQL base directory.])
|
||||
[ --with-pdo-mysql[=DIR] Include MySQL support. DIR is the MySQL base directory.])
|
||||
|
||||
if test "$PHP_PDO_MYSQL" != "no"; then
|
||||
AC_DEFINE(HAVE_MYSQL, 1, [Whether you have MySQL])
|
||||
|
@ -9,7 +9,7 @@ if (PHP_PDO_MYSQL != "no") {
|
||||
EXTENSION("pdo_mysql", "pdo_mysql.c mysql_driver.c mysql_statement.c");
|
||||
ADD_FLAG('CFLAGS_PDO_MYSQL', "/I ..\\pecl");
|
||||
} else {
|
||||
WARNING("pdo-mysql not enabled; libraries and headers not found");
|
||||
WARNING("pdo_mysql not enabled; libraries and headers not found");
|
||||
}
|
||||
ADD_EXTENSION_DEP('pdo-mysql', 'pdo');
|
||||
ADD_EXTENSION_DEP('pdo_mysql', 'pdo');
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user