|
|
3ef2ca |
To: vim_dev@googlegroups.com
|
|
|
3ef2ca |
Subject: Patch 7.4.056
|
|
|
3ef2ca |
Fcc: outbox
|
|
|
3ef2ca |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
|
3ef2ca |
Mime-Version: 1.0
|
|
|
3ef2ca |
Content-Type: text/plain; charset=UTF-8
|
|
|
3ef2ca |
Content-Transfer-Encoding: 8bit
|
|
|
3ef2ca |
------------
|
|
|
3ef2ca |
|
|
|
3ef2ca |
Patch 7.4.056
|
|
|
3ef2ca |
Problem: Mac: Compilation problem with OS X 10.9 Mavericks.
|
|
|
3ef2ca |
Solution: Include AvailabilityMacros.h when available. (Kazunobu Kuriyama)
|
|
|
3ef2ca |
Files: src/os_unix.c
|
|
|
3ef2ca |
|
|
|
3ef2ca |
|
|
|
3ef2ca |
*** ../vim-7.4.055/src/os_unix.c 2013-09-05 21:41:35.000000000 +0200
|
|
|
3ef2ca |
--- src/os_unix.c 2013-11-02 21:46:05.000000000 +0100
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 804,809 ****
|
|
|
3ef2ca |
--- 804,815 ----
|
|
|
3ef2ca |
* completely full.
|
|
|
3ef2ca |
*/
|
|
|
3ef2ca |
|
|
|
3ef2ca |
+ #if defined(HAVE_AVAILABILITYMACROS_H) \
|
|
|
3ef2ca |
+ && defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) \
|
|
|
3ef2ca |
+ && (__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ >= 1090)
|
|
|
3ef2ca |
+ # include <AvailabilityMacros.h>
|
|
|
3ef2ca |
+ #endif
|
|
|
3ef2ca |
+
|
|
|
3ef2ca |
#ifndef SIGSTKSZ
|
|
|
3ef2ca |
# define SIGSTKSZ 8000 /* just a guess of how much stack is needed... */
|
|
|
3ef2ca |
#endif
|
|
|
3ef2ca |
*** ../vim-7.4.055/src/version.c 2013-11-02 21:04:32.000000000 +0100
|
|
|
3ef2ca |
--- src/version.c 2013-11-02 21:44:10.000000000 +0100
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 740,741 ****
|
|
|
3ef2ca |
--- 740,743 ----
|
|
|
3ef2ca |
{ /* Add new patch number below this line */
|
|
|
3ef2ca |
+ /**/
|
|
|
3ef2ca |
+ 56,
|
|
|
3ef2ca |
/**/
|
|
|
3ef2ca |
|
|
|
3ef2ca |
--
|
|
|
3ef2ca |
If an elephant is left tied to a parking meter, the parking fee has to be paid
|
|
|
3ef2ca |
just as it would for a vehicle.
|
|
|
3ef2ca |
[real standing law in Florida, United States of America]
|
|
|
3ef2ca |
|
|
|
3ef2ca |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
|
3ef2ca |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
|
3ef2ca |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
|
3ef2ca |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|