From: Erwin Janssen Date: Sat, 9 Jul 2016 22:58:43 +0000 (+0200) Subject: Disabled mp_types on Windows as it causes errors. X-Git-Tag: untagged-3c169aaa6280ec506b08^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3e1050ccab8a24d67c5b8b1fa35b2400b90a6b76;p=graphviz Disabled mp_types on Windows as it causes errors. --- diff --git a/plugin/core/gvplugin_core.c b/plugin/core/gvplugin_core.c index 77c31b1ac..53d7866ff 100644 --- a/plugin/core/gvplugin_core.c +++ b/plugin/core/gvplugin_core.c @@ -16,7 +16,9 @@ extern gvplugin_installed_t gvdevice_dot_types[]; extern gvplugin_installed_t gvdevice_fig_types[]; extern gvplugin_installed_t gvdevice_map_types[]; +#if !defined(WIN32) extern gvplugin_installed_t gvdevice_mp_types[]; +#endif extern gvplugin_installed_t gvdevice_ps_types[]; extern gvplugin_installed_t gvdevice_svg_types[]; #if !defined(WIN32) @@ -30,7 +32,9 @@ extern gvplugin_installed_t gvdevice_pov_types[]; extern gvplugin_installed_t gvrender_dot_types[]; extern gvplugin_installed_t gvrender_fig_types[]; extern gvplugin_installed_t gvrender_map_types[]; +#if !defined(WIN32) extern gvplugin_installed_t gvrender_mp_types[]; +#endif extern gvplugin_installed_t gvrender_ps_types[]; extern gvplugin_installed_t gvrender_svg_types[]; #if !defined(WIN32) @@ -50,7 +54,9 @@ static gvplugin_api_t apis[] = { {API_device, gvdevice_dot_types}, {API_device, gvdevice_fig_types}, {API_device, gvdevice_map_types}, +#if !defined(WIN32) {API_device, gvdevice_mp_types}, +#endif {API_device, gvdevice_ps_types}, {API_device, gvdevice_svg_types}, #if !defined(WIN32) @@ -64,7 +70,9 @@ static gvplugin_api_t apis[] = { {API_render, gvrender_dot_types}, {API_render, gvrender_fig_types}, {API_render, gvrender_map_types}, +#if !defined(WIN32) {API_render, gvrender_mp_types}, +#endif {API_render, gvrender_ps_types}, {API_render, gvrender_svg_types}, #if !defined(WIN32)