Hi, 2014/5/20 Tue 2:48:13 UTC+9 Germishuys Jacques wrote: > It is really problematic to get python extensions to work on Windows, mainly > due to the fact that the manifest we are providing is not compatible and/or > VIM is built with the static CRT. > > This patch embeds the generated manifest file. The existing gvim.exe.mnf file > has been slightly truncated, as it should really not dictate which assemblies > are required. It will still be compiled by the resource compiler, and should > provide the extra info i.e. description and DPI settings. > > The patch was generated by "git format-patch", but should be applyable with > "patch -p1".
Do you use Python for Windows extensions (pywin32)? If so, it's a problem of pywin32, not Vim, I think. http://bugs.python.org/issue7833 This is caused because pywintypes27.dll doesn't have embedded manifest. - <dependency> - <dependentAssembly> - <assemblyIdentity - type="win32" - name="Microsoft.Windows.Common-Controls" - version="6.0.0.0" - publicKeyToken="6595b64144ccf1df" - language="*" - processorArchitecture="*" - /> - </dependentAssembly> - </dependency> This part is needed for the visual styles. Regards, Ken Takata -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
