diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-03-01 22:09:21 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-03-01 22:09:21 +0000 |
commit | fd2ac767ebb66adcb7ca85955f5fd40704475595 (patch) | |
tree | 16e61ca0dbcc0ffeb10a3fb5072842144ca9f89d /src/INSTALLmac.txt | |
parent | e1438bb8d0b7a48f712458e68755ab8b66d92ace (diff) | |
download | vim-git-fd2ac767ebb66adcb7ca85955f5fd40704475595.tar.gz |
updated for version 7.0211
Diffstat (limited to 'src/INSTALLmac.txt')
-rw-r--r-- | src/INSTALLmac.txt | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/src/INSTALLmac.txt b/src/INSTALLmac.txt index 1c4d7732a..fa40c157b 100644 --- a/src/INSTALLmac.txt +++ b/src/INSTALLmac.txt @@ -28,23 +28,32 @@ MacOS Classic is no longer supported. If you really want it use Vim 6.4. 1.1 Carbon interface (default) You can compile vim with the standard Unix routine: - cd .. - ./configure - make; make install + cd .../src + make This will create a working Vim.app application bundle in the src directory. You can move this bundle (the Vim.app directory) anywhere - you want, for example, /Applications. + you want. Or use this command to move it to /Applications: + make install You need at least Xcode 1.5 to compile Vim 7.0. + Configure will create a universal binary if possible. This requires + installing the universal SDK (currently for 10.4). + + To overrule the architecture do this before running make: + + ./configure --with-mac-arch=intel + or + ./configure --with-mac-arch=ppc + 1.2 X-Windows or Plain Text If you do not want the Carbon interface, you must explicitly tell configure to use a different GUI. - cd .. + cd .../src ./configure --disable-darwin --enable-gui=gtk2 make; make install |