From: John Ellson Date: Sat, 9 Jul 2016 13:32:16 +0000 (-0400) Subject: fix mp pluging loading X-Git-Tag: untagged-fd4ca25a4ca4e4dc471c~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=716b67ce4af7e0d2e5d1e49ec1c6339b3584bf53;p=graphviz fix mp pluging loading --- diff --git a/plugin/core/gvplugin_core.c b/plugin/core/gvplugin_core.c index 8dc7e6572..1710c4df0 100644 --- a/plugin/core/gvplugin_core.c +++ b/plugin/core/gvplugin_core.c @@ -16,6 +16,7 @@ extern gvplugin_installed_t gvdevice_dot_types[]; extern gvplugin_installed_t gvdevice_fig_types[]; extern gvplugin_installed_t gvdevice_map_types[]; +extern gvplugin_installed_t gvdevice_mp_types[]; extern gvplugin_installed_t gvdevice_ps_types[]; extern gvplugin_installed_t gvdevice_svg_types[]; extern gvplugin_installed_t gvdevice_json_types[]; @@ -27,6 +28,7 @@ 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[]; +extern gvplugin_installed_t gvrender_mp_types[]; extern gvplugin_installed_t gvrender_ps_types[]; extern gvplugin_installed_t gvrender_svg_types[]; extern gvplugin_installed_t gvrender_json_types[]; @@ -44,6 +46,7 @@ static gvplugin_api_t apis[] = { {API_device, gvdevice_dot_types}, {API_device, gvdevice_fig_types}, {API_device, gvdevice_map_types}, + {API_device, gvdevice_mp_types}, {API_device, gvdevice_ps_types}, {API_device, gvdevice_svg_types}, {API_device, gvdevice_json_types}, @@ -55,6 +58,7 @@ static gvplugin_api_t apis[] = { {API_render, gvrender_dot_types}, {API_render, gvrender_fig_types}, {API_render, gvrender_map_types}, + {API_render, gvrender_mp_types}, {API_render, gvrender_ps_types}, {API_render, gvrender_svg_types}, {API_render, gvrender_json_types},