diff options
author | foobar <sniper@php.net> | 2007-07-03 17:25:43 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2007-07-03 17:25:43 +0000 |
commit | 7ed3c4536d7b89647628ba89ffc52a92234e909a (patch) | |
tree | 3722e9312134616e1eaca3b7f2448569f582787d /ext/json | |
parent | 2fd4e8146c9e7f6de7e8e260be9833e875734f45 (diff) | |
download | php-git-7ed3c4536d7b89647628ba89ffc52a92234e909a.tar.gz |
MFH: Fix some configure --help texts
Diffstat (limited to 'ext/json')
-rw-r--r-- | ext/json/config.m4 | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ext/json/config.m4 b/ext/json/config.m4 index b5c50cc0e5..ade797a12d 100644 --- a/ext/json/config.m4 +++ b/ext/json/config.m4 @@ -3,7 +3,7 @@ dnl $Id$ dnl PHP_ARG_ENABLE(json, whether to enable JavaScript Object Serialization support, -[ --disable-json Disable JavaScript Object Serialization support], yes) +[ --disable-json Disable JavaScript Object Serialization support], yes) if test "$PHP_JSON" != "no"; then AC_DEFINE([HAVE_JSON],1 ,[whether to enable JavaScript Object Serialization support]) @@ -12,5 +12,3 @@ if test "$PHP_JSON" != "no"; then PHP_NEW_EXTENSION(json, json.c utf8_to_utf16.c utf8_decode.c JSON_parser.c, $ext_shared) PHP_SUBST(JSON_SHARED_LIBADD) fi - -# vim600: sts=2 sw=2 et |