home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / patches / 7.4 / 7.4.056 < prev    next >
Encoding:
Internet Message Format  |  2013-11-01  |  1.6 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.4.056
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=UTF-8
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 7.4.056
  11. Problem:    Mac: Compilation problem with OS X 10.9 Mavericks.
  12. Solution:   Include AvailabilityMacros.h when available. (Kazunobu Kuriyama)
  13. Files:      src/os_unix.c
  14.  
  15.  
  16. *** ../vim-7.4.055/src/os_unix.c    2013-09-05 21:41:35.000000000 +0200
  17. --- src/os_unix.c    2013-11-02 21:46:05.000000000 +0100
  18. ***************
  19. *** 804,809 ****
  20. --- 804,815 ----
  21.    * completely full.
  22.    */
  23.   
  24. + #if defined(HAVE_AVAILABILITYMACROS_H) \
  25. +     && defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) \
  26. +     && (__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ >= 1090)
  27. + # include <AvailabilityMacros.h>
  28. + #endif
  29.   #ifndef SIGSTKSZ
  30.   # define SIGSTKSZ 8000    /* just a guess of how much stack is needed... */
  31.   #endif
  32. *** ../vim-7.4.055/src/version.c    2013-11-02 21:04:32.000000000 +0100
  33. --- src/version.c    2013-11-02 21:44:10.000000000 +0100
  34. ***************
  35. *** 740,741 ****
  36. --- 740,743 ----
  37.   {   /* Add new patch number below this line */
  38. + /**/
  39. +     56,
  40.   /**/
  41.  
  42. -- 
  43. If an elephant is left tied to a parking meter, the parking fee has to be paid
  44. just as it would for a vehicle.
  45.         [real standing law in Florida, United States of America]
  46.  
  47.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  48. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  49. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  50.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  51.