Bram,
this patch fixes a tiny build link problem, by adding some ifdefs
Also I just noticed there is another problem with the windows builds:
https://ci.appveyor.com/project/chrisbra/vim-win32-installer/build/21/job/2245l7loh1lefoc9#L479
eval.obj : error LNK2001: unresolved external symbol get_job_options
vim.exe : fatal error LNK1120: 1 unresolved externals
diff --git a/src/gui_w32.c b/src/gui_w32.c
index 70dd9b5..cc31c7c 100644
--- a/src/gui_w32.c
+++ b/src/gui_w32.c
@@ -1670,6 +1670,7 @@ gui_mch_init(void)
if (s_textArea == NULL)
return FAIL;
+#ifdef FEAT_LIBCALL
/* Try loading an icon from $RUNTIMEPATH/bitmaps/vim.ico. */
{
HANDLE hIcon = NULL;
@@ -1677,6 +1678,7 @@ gui_mch_init(void)
if (mch_icon_load(&hIcon) == OK && hIcon != NULL)
SendMessage(s_hwnd, WM_SETICON, ICON_SMALL, (LPARAM)hIcon);
}
+#endif
#ifdef FEAT_MENU
s_menuBar = CreateMenu();
Best,
Christian
--
Die Freiheit des Menschen liegt nicht darin, daß er tun kann, was er
will, sondern das er nicht tun muß, was er nicht will.
-- Jean Jacques Rousseau
--
--
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.