From: Matthew Fernandez Date: Thu, 7 Apr 2022 15:44:29 +0000 (-0700) Subject: Visio plugin: fix: remove typoed #pragma dependencies X-Git-Tag: 4.0.0~116^2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=19f129bd92acb75da4d6f10651a00273bf5d1002;p=graphviz Visio plugin: fix: remove typoed #pragma dependencies It seems to have been an accidental omission that these were not removed in 2d95aab626184f35f779bbd02a000a992826047a when migrating to describing link dependencies in the build system files. However, these dependencies are typoed too (should be `cgraph.lib` not `graph.lib`), so it is unclear how they could have ever worked. This seems to have gone undiscovered because the Visio plugin is not integrated into the MS Build files nor built on any Windows platform in CI. This changes in an upcoming commit, exposing: LINK : fatal error LNK1104: cannot open file 'graph.lib' Gitlab: #1836 --- diff --git a/plugin/visio/gvplugin_visio.c b/plugin/visio/gvplugin_visio.c index 6a0241557..85cee768f 100644 --- a/plugin/visio/gvplugin_visio.c +++ b/plugin/visio/gvplugin_visio.c @@ -8,12 +8,6 @@ * Contributors: Details at https://graphviz.org *************************************************************************/ -#ifdef _WIN32 //*dependencies - #pragma comment( lib, "gvc.lib" ) - #pragma comment( lib, "graph.lib" ) -#endif - - #include extern gvplugin_installed_t gvdevice_vdx_types[];