* Christian Ebert on Tuesday, March 27, 2007 at 01:15:20 +0200:
> I did a few experiments.
>
> As I compile with --disable-darwin, I build a Vim.app (that's how
> it's called on the Mac) for testing, and there things get even
> more confusing with a newer Python in /usr/local, as it uses the
> new Python in /usr/local as C-API but links against the old
> Python shipped by Apple in
> /System/Library/Frameworks/Python.framework/Versions/2.3
>
> Then I made my usual build with --disable-darwin and called
> ./src/vim
> meaning vim in the build directory. And! everything worked.
> Still, after make install, vim in /usr/local/bin showed the same
> errors.
<snip>
> Apparently "make install" strips something from the executable.
Solved/worked around by, eg:
--- a/src/Makefile Tue Mar 27 12:08:55 2007 +0200
+++ b/src/Makefile Tue Mar 27 12:52:35 2007 +0200
@@ -998,7 +998,7 @@ INSTALL_DATA_R = cp -r
INSTALL_DATA_R = cp -r
### Program to run on installed binary
-#STRIP = strip
+STRIP = strip -x
### Permissions for binaries {{{1
BINMOD = 755
--
Vim plugin to paste current GNU Screen buffer in (almost) any mode:
<http://www.vim.org/scripts/script.php?script_id=1512>