comparison src/vim.h @ 9684:441514466726 v7.4.2118

commit https://github.com/vim/vim/commit/83a2a80d6f699ad9a236431170038698e355c025 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jul 29 21:01:10 2016 +0200 patch 7.4.2118 Problem: Mac: can't build with tiny features. Solution: Don't define FEAT_CLIPBOARD unconditionally. (Kazunobu Kuriyama)
author Christian Brabandt <cb@256bit.org>
date Fri, 29 Jul 2016 21:15:07 +0200
parents 08df6ad72c56
children 02bed64bbd79
comparison
equal deleted inserted replaced
9683:9ea5bca002ef 9684:441514466726
96 #if defined(MACOS_X_UNIX) 96 #if defined(MACOS_X_UNIX)
97 # define MACOS_X 97 # define MACOS_X
98 # ifndef HAVE_CONFIG_H 98 # ifndef HAVE_CONFIG_H
99 # define UNIX 99 # define UNIX
100 # endif 100 # endif
101 # ifndef FEAT_CLIPBOARD 101 # if defined(FEAT_SMALL) && !defined(FEAT_CLIPBOARD)
102 # define FEAT_CLIPBOARD 102 # define FEAT_CLIPBOARD
103 # if defined(FEAT_SMALL) && !defined(FEAT_MOUSE) 103 # endif
104 # define FEAT_MOUSE 104 # if defined(FEAT_SMALL) && !defined(FEAT_MOUSE)
105 # endif 105 # define FEAT_MOUSE
106 # endif 106 # endif
107 #endif 107 #endif
108 #if defined(MACOS_X) || defined(MACOS_CLASSIC) 108 #if defined(MACOS_X) || defined(MACOS_CLASSIC)
109 # define MACOS 109 # define MACOS
110 #endif 110 #endif