Annotation of embedaddon/php/ext/json/config.m4, revision 1.1.1.3

1.1       misho       1: dnl
1.1.1.2   misho       2: dnl $Id$
1.1       misho       3: dnl
                      4: 
                      5: PHP_ARG_ENABLE(json, whether to enable JavaScript Object Serialization support,
                      6: [  --disable-json          Disable JavaScript Object Serialization support], yes)
                      7: 
                      8: if test "$PHP_JSON" != "no"; then
                      9:   AC_DEFINE([HAVE_JSON],1 ,[whether to enable JavaScript Object Serialization support])
                     10:   AC_HEADER_STDC
                     11: 
1.1.1.3 ! misho      12:   PHP_NEW_EXTENSION(json, json.c utf8_decode.c JSON_parser.c, $ext_shared)
1.1       misho      13:   PHP_INSTALL_HEADERS([ext/json], [php_json.h])
                     14:   PHP_SUBST(JSON_SHARED_LIBADD)
                     15: fi

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>