diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-02-20 21:27:21 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-02-20 21:27:21 +0000 |
commit | 2a0449d129e211ce0b87a248e6205a11b49a203c (patch) | |
tree | 28eff7f965560f72afa4be77cc35f273fc46afa3 /src/os_mac.h | |
parent | 7e8fd63682801d6cdd7f31972540c21f148b289e (diff) | |
download | vim-git-2a0449d129e211ce0b87a248e6205a11b49a203c.tar.gz |
updated for version 7.0202
Diffstat (limited to 'src/os_mac.h')
-rw-r--r-- | src/os_mac.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/os_mac.h b/src/os_mac.h index 5e286594f..82d91a8e6 100644 --- a/src/os_mac.h +++ b/src/os_mac.h @@ -93,12 +93,12 @@ */ /* Got problem trying to use shared library in 68k */ -#if !defined(__POWERPC__) && defined(FEAT_PYTHON) +#if !defined(__POWERPC__) && !defined(__i386__) && defined(FEAT_PYTHON) # undef FEAT_PYTHON # warning Auto-disabling Python. Not yet supported in 68k. #endif -#if !defined(__POWERPC__) && !defined(__ppc__) +#if !defined(__POWERPC__) && !defined(__ppc__) && !defined(__i386__) # if !__option(enumsalwaysint) # error "You must compile with enums always int!" # endif |