]> granicus.if.org Git - php/commitdiff
Fix extension name
authorMarcus Boerger <helly@php.net>
Sun, 15 Aug 2004 15:56:33 +0000 (15:56 +0000)
committerMarcus Boerger <helly@php.net>
Sun, 15 Aug 2004 15:56:33 +0000 (15:56 +0000)
ext/pdo_mysql/config.m4
ext/pdo_mysql/config.w32

index dfe94749b21c08ce26354f18de55bf66baec3e5e..3a60023fdd02be112fc80e01cd9429045cf843fd 100755 (executable)
@@ -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])
index 3af2e63acba2c23e54dc5d971df226eb1956b8e6..24b2f7cf53513281d24f17a480370d341be8fc13 100644 (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');
 }