diff options
Diffstat (limited to 'ext/pdo_mysql/config.m4')
-rw-r--r-- | ext/pdo_mysql/config.m4 | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/ext/pdo_mysql/config.m4 b/ext/pdo_mysql/config.m4 index 4634626ae3..d638f03a28 100644 --- a/ext/pdo_mysql/config.m4 +++ b/ext/pdo_mysql/config.m4 @@ -1,13 +1,18 @@ dnl config.m4 for extension pdo_mysql -PHP_ARG_WITH(pdo-mysql, for MySQL support for PDO, -[ --with-pdo-mysql[=DIR] PDO: MySQL support. DIR is the MySQL base directory - If no value or mysqlnd is passed as DIR, the - MySQL native driver will be used]) +PHP_ARG_WITH([pdo-mysql], + [for MySQL support for PDO], + [AS_HELP_STRING([[--with-pdo-mysql[=DIR]]], + [PDO: MySQL support. DIR is the MySQL base directory. If no value or mysqlnd + is passed as DIR, the MySQL native driver will be used])]) if test -z "$PHP_ZLIB_DIR"; then - PHP_ARG_WITH(zlib-dir, for the location of libz, - [ --with-zlib-dir[=DIR] PDO_MySQL: Set the path to libz install prefix], no, no) + PHP_ARG_WITH([zlib-dir], + [for the location of libz], + [AS_HELP_STRING([[--with-zlib-dir[=DIR]]], + [PDO_MySQL: Set the path to libz install prefix])], + [no], + [no]) fi if test "$PHP_PDO_MYSQL" != "no"; then |