comparison src/os_macosx.m @ 21749:e86237409bd2 v8.2.1424

patch 8.2.1424: Mac build fails Commit: https://github.com/vim/vim/commit/040f975fc1de14ada5e0a7324bb5e51e461be2dd Author: Bram Moolenaar <Bram@vim.org> Date: Tue Aug 11 23:08:48 2020 +0200 patch 8.2.1424: Mac build fails Problem: Mac build fails. Solution: Adjust configure to not fall back to Athena. Adjust some other files.
author Bram Moolenaar <Bram@vim.org>
date Tue, 11 Aug 2020 23:15:04 +0200
parents d0438b4b0acf
children c346db463a59
comparison
equal deleted inserted replaced
21748:d04be2bd54dc 21749:e86237409bd2
31 * Clipboard support for the console. 31 * Clipboard support for the console.
32 * Don't include this when building the GUI version, the functions in 32 * Don't include this when building the GUI version, the functions in
33 * gui_mac.c are used then. TODO: remove those instead? 33 * gui_mac.c are used then. TODO: remove those instead?
34 * But for MacVim we do need these ones. 34 * But for MacVim we do need these ones.
35 */ 35 */
36 #if defined(FEAT_CLIPBOARD) && (!defined(FEAT_GUI_ENABLED) || defined(FEAT_GUI_MACVIM)) 36 #if defined(FEAT_CLIPBOARD) && (!defined(FEAT_GUI_ENABLED))
37 37
38 /* Used to identify clipboard data copied from Vim. */ 38 /* Used to identify clipboard data copied from Vim. */
39 39
40 NSString *VimPboardType = @"VimPboardType"; 40 NSString *VimPboardType = @"VimPboardType";
41 41