From: Erwin Janssen Date: Tue, 21 Jun 2016 23:31:08 +0000 (+0200) Subject: Disabled JSON in gvplugin_core for Windows. X-Git-Tag: untagged-fd4ca25a4ca4e4dc471c~4^2~39 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=443cd0eaf83fff68b87866a4c1037bb906d9f99c;p=graphviz Disabled JSON in gvplugin_core for Windows. --- diff --git a/plugin/core/gvplugin_core.c b/plugin/core/gvplugin_core.c index 8dc7e6572..8ffd61996 100644 --- a/plugin/core/gvplugin_core.c +++ b/plugin/core/gvplugin_core.c @@ -18,7 +18,9 @@ extern gvplugin_installed_t gvdevice_fig_types[]; extern gvplugin_installed_t gvdevice_map_types[]; extern gvplugin_installed_t gvdevice_ps_types[]; extern gvplugin_installed_t gvdevice_svg_types[]; +#if !defined(WIN32) extern gvplugin_installed_t gvdevice_json_types[]; +#endif extern gvplugin_installed_t gvdevice_tk_types[]; extern gvplugin_installed_t gvdevice_vml_types[]; extern gvplugin_installed_t gvdevice_pic_types[]; @@ -29,7 +31,9 @@ extern gvplugin_installed_t gvrender_fig_types[]; extern gvplugin_installed_t gvrender_map_types[]; extern gvplugin_installed_t gvrender_ps_types[]; extern gvplugin_installed_t gvrender_svg_types[]; +#if !defined(WIN32) extern gvplugin_installed_t gvrender_json_types[]; +#endif extern gvplugin_installed_t gvrender_tk_types[]; extern gvplugin_installed_t gvrender_vml_types[]; extern gvplugin_installed_t gvrender_pic_types[]; @@ -46,7 +50,9 @@ static gvplugin_api_t apis[] = { {API_device, gvdevice_map_types}, {API_device, gvdevice_ps_types}, {API_device, gvdevice_svg_types}, +#if !defined(WIN32) {API_device, gvdevice_json_types}, +#endif {API_device, gvdevice_tk_types}, {API_device, gvdevice_vml_types}, {API_device, gvdevice_pic_types}, @@ -57,7 +63,9 @@ static gvplugin_api_t apis[] = { {API_render, gvrender_map_types}, {API_render, gvrender_ps_types}, {API_render, gvrender_svg_types}, +#if !defined(WIN32) {API_render, gvrender_json_types}, +#endif {API_render, gvrender_tk_types}, {API_render, gvrender_vml_types}, {API_render, gvrender_pic_types},