Christian Wellenbrock wrote:

> > > I just cloned a completely new copy of the hg vim sources and called
> > > make from the src folder. I get the following errors:
> > 
> > > https://gist.github.com/wellle/5783452/raw/b7b02012331575f646b5bb09246329947ae7eb44/gistfile1.txt
> > 
> > 
> > 
> > Check the definition of MAC_OS_X_VERSION_MAX_ALLOWED
> > This line is only supposed to be included for some old OSX version.
> 
> MAC_OS_X_VERSION_MAX_ALLOWED doesn't seem to be defined. I searched the whole 
> vim directory and could only find the following two lines in src/os_unix.c. 
> Where is it supposed to be defined?
> 
> vim hg:default ❱ ag -a VERSION_MAX
> src/os_unix.c
> 826:#  if defined(__APPLE__) && (!defined(MAC_OS_X_VERSION_MAX_ALLOWED) \
> 827:            || MAC_OS_X_VERSION_MAX_ALLOWED <= 1040)
> vim hg:default ❱

Could be defined in a header file, or by the compiler itself.
Try this:

        gcc -dM -E - < /dev/null

If MAC_OS_X_VERSION_MAX_ALLOWED is no longer defined, perhaps there is
another one to identify the OSX version?

-- 
hundred-and-one symptoms of being an internet addict:
199. You read this entire list of symptoms, looking for something
     that doesn't describe you.

 /// Bram Moolenaar -- b...@moolenaar.net -- http://www.Moolenaar.net   \\\
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///

-- 
-- 
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

--- 
You received this message because you are subscribed to the Google Groups 
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to vim_dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to