Fix extension name

This commit is contained in:
Marcus Boerger 2004-08-15 15:56:33 +00:00
parent ce8331f9a5
commit d16571328f
2 changed files with 3 additions and 3 deletions

View File

@ -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])

View File

@ -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');
}