diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-07-27 22:41:43 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-07-27 22:41:43 +0200 |
commit | 8765a4ac3a9dfb994ad7051183353ead25cfbb64 (patch) | |
tree | 92b7309028f41799a44ef42512802188b4470a07 /src/feature.h | |
parent | 3b95389d45bacf90f4ef04a7a7726e5ddc29027a (diff) | |
download | vim-git-8765a4ac3a9dfb994ad7051183353ead25cfbb64.tar.gz |
Fix build warnings and problems for tiny/small Win32 build. (Mike Williams)
Diffstat (limited to 'src/feature.h')
-rw-r--r-- | src/feature.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/feature.h b/src/feature.h index 3f25898a0..ea79758af 100644 --- a/src/feature.h +++ b/src/feature.h @@ -819,7 +819,8 @@ # endif #endif #if !defined(FEAT_GUI_DIALOG) && (defined(FEAT_GUI_MOTIF) \ - || defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_GTK)) + || defined(FEAT_GUI_ATHENA) || defined(FEAT_GUI_GTK) \ + || defined(FEAT_GUI_W32)) /* need a dialog to show error messages when starting from the desktop */ # define FEAT_GUI_DIALOG #endif |