diff options
author | Hartmut Holzgraefe <hholzgra@php.net> | 2002-01-04 14:15:25 +0000 |
---|---|---|
committer | Hartmut Holzgraefe <hholzgra@php.net> | 2002-01-04 14:15:25 +0000 |
commit | 25534467c7431b91f902167593202daadef283e7 (patch) | |
tree | f676d221f472a6ee0c0f2f8fd1a87201e3856ab2 | |
parent | 5a8b199454807a67fac61ef0c1a68f68cb7ca313 (diff) | |
download | php-git-25534467c7431b91f902167593202daadef283e7.tar.gz |
more unquoted messages with kommas fixed
-rw-r--r-- | ext/rpc/xmlrpc/config.m4 | 2 | ||||
-rw-r--r-- | ext/xmlrpc/config.m4 | 2 | ||||
-rw-r--r-- | ext/xslt/config.m4 | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/ext/rpc/xmlrpc/config.m4 b/ext/rpc/xmlrpc/config.m4 index b38952b27d..5448c24c7e 100644 --- a/ext/rpc/xmlrpc/config.m4 +++ b/ext/rpc/xmlrpc/config.m4 @@ -42,7 +42,7 @@ dnl found_iconv=no fi if test "$found_iconv" = "no"; then - AC_MSG_ERROR(iconv not found, in order to build xmlrpc you need the iconv library) + AC_MSG_ERROR([iconv not found, in order to build xmlrpc you need the iconv library]) fi fi diff --git a/ext/xmlrpc/config.m4 b/ext/xmlrpc/config.m4 index b38952b27d..5448c24c7e 100644 --- a/ext/xmlrpc/config.m4 +++ b/ext/xmlrpc/config.m4 @@ -42,7 +42,7 @@ dnl found_iconv=no fi if test "$found_iconv" = "no"; then - AC_MSG_ERROR(iconv not found, in order to build xmlrpc you need the iconv library) + AC_MSG_ERROR([iconv not found, in order to build xmlrpc you need the iconv library]) fi fi diff --git a/ext/xslt/config.m4 b/ext/xslt/config.m4 index 9d405b4da3..00fe9fd738 100644 --- a/ext/xslt/config.m4 +++ b/ext/xslt/config.m4 @@ -78,7 +78,7 @@ if test "$PHP_XSLT" != "no"; then fi if test "$found_iconv" = "no"; then - AC_MSG_ERROR(iconv not found, in order to build sablotron you need the iconv library) + AC_MSG_ERROR([iconv not found, in order to build sablotron you need the iconv library]) fi AC_DEFINE(HAVE_SABLOT_BACKEND, 1, [ ]) |