]> granicus.if.org Git - graphviz/commitdiff
fix mp pluging loading
authorJohn Ellson <john.ellson@comcast.net>
Sat, 9 Jul 2016 13:32:16 +0000 (09:32 -0400)
committerJohn Ellson <john.ellson@comcast.net>
Sat, 9 Jul 2016 13:32:16 +0000 (09:32 -0400)
plugin/core/gvplugin_core.c

index 8dc7e65726f40d4ab9d831abe5ddaf0a15863e50..1710c4df060186bf8fe4f585367949a016f69ca2 100644 (file)
@@ -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},