From fd2ac767ebb66adcb7ca85955f5fd40704475595 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 1 Mar 2006 22:09:21 +0000 Subject: updated for version 7.0211 --- src/INSTALLmac.txt | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) (limited to 'src/INSTALLmac.txt') 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 -- cgit v1.2.1