diff options
author | Marcus Boerger <helly@php.net> | 2004-08-15 13:43:56 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2004-08-15 13:43:56 +0000 |
commit | 295ae448b1fc3b508229d1bf4d740f1d22c2ceed (patch) | |
tree | 28c06cfe181852003ab117496f5d85f5cc48e68b | |
parent | 1c6f49006b640c5ee2be320a834466876641ca7e (diff) | |
download | php-git-295ae448b1fc3b508229d1bf4d740f1d22c2ceed.tar.gz |
- Synch names with other extensions
-rwxr-xr-x | ext/pdo_mysql/config.m4 | 4 | ||||
-rw-r--r-- | ext/pdo_mysql/config.w32 | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/ext/pdo_mysql/config.m4 b/ext/pdo_mysql/config.m4 index a2864d081c..dfe94749b2 100755 --- a/ext/pdo_mysql/config.m4 +++ b/ext/pdo_mysql/config.m4 @@ -12,8 +12,8 @@ AC_DEFUN(MYSQL_LIB_CHK, [ done ]) -PHP_ARG_WITH(pdo_mysql, for MySQL support, -[ --with-pdo_mysql[=DIR] Include MySQL support. DIR is the MySQL base directory.]) +PHP_ARG_WITH(pdo-mysql, for MySQL support, +[ --with-pdo-smysql[=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]) diff --git a/ext/pdo_mysql/config.w32 b/ext/pdo_mysql/config.w32 index 24b2f7cf53..3af2e63acb 100644 --- a/ext/pdo_mysql/config.w32 +++ b/ext/pdo_mysql/config.w32 @@ -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'); } |