comparison src/eval.c @ 8078:7676818d486b v7.4.1333

commit https://github.com/vim/vim/commit/f8df7addc5f741c16fa2a458f8777ac1fdf2e01e Author: Bram Moolenaar <Bram@vim.org> Date: Tue Feb 16 14:07:40 2016 +0100 patch 7.4.1333 Problem: Channel test fails on non-darwin builds. Solution: Add the "osx" feature and test for that. (Kazunobu Kuriyama)
author Christian Brabandt <cb@256bit.org>
date Tue, 16 Feb 2016 14:15:05 +0100
parents e4c3f6720b03
children b6cb94ad97a4
comparison
equal deleted inserted replaced
8077:59a21b97d8f6 8078:7676818d486b
13115 #endif 13115 #endif
13116 #ifdef MACOS 13116 #ifdef MACOS
13117 "mac", 13117 "mac",
13118 #endif 13118 #endif
13119 #if defined(MACOS_X_UNIX) 13119 #if defined(MACOS_X_UNIX)
13120 "macunix", 13120 "macunix", /* built with 'darwin' enabled */
13121 #endif
13122 #if defined(__APPLE__) && __APPLE__ == 1
13123 "osx", /* built with or without 'darwin' enabled */
13121 #endif 13124 #endif
13122 #ifdef __QNX__ 13125 #ifdef __QNX__
13123 "qnx", 13126 "qnx",
13124 #endif 13127 #endif
13125 #ifdef UNIX 13128 #ifdef UNIX