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 / 6.0.067 < prev    next >
Encoding:
Internet Message Format  |  2001-11-02  |  1.6 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.067
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. MIME-Version: 1.0
  6. Content-Type: text/plain; charset=ISO-8859-1
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 6.0.067
  11. Problem:    if_xcmdsrv.c doesn't compile on systems where fd_set isn't defined
  12.         in the usual header file (e.g., AIX). (Mark Waggoner)
  13. Solution:   Include sys/select.h in if_xcmdsrv.c for systems that have it.
  14. Files:        src/if_xcmdsrv.c
  15.  
  16.  
  17. *** ../vim60.66/src/if_xcmdsrv.c    Mon Sep 24 12:02:29 2001
  18. --- src/if_xcmdsrv.c    Sat Nov  3 13:56:56 2001
  19. ***************
  20. *** 21,26 ****
  21. --- 21,31 ----
  22.   #  include <X11/Xatom.h>
  23.   # endif
  24.   
  25. + # if defined(HAVE_SYS_SELECT_H) && \
  26. +     (!defined(HAVE_SYS_TIME_H) || defined(SYS_SELECT_WITH_SYS_TIME))
  27. + #  include <sys/select.h>
  28. + # endif
  29.   /*
  30.    * This file provides procedures that implement the command server functionality
  31.    * of Vim when in contact with an X11 server.
  32. *** ../vim60.66/src/version.c    Sat Nov  3 14:01:26 2001
  33. --- src/version.c    Sat Nov  3 14:01:06 2001
  34. ***************
  35. *** 608,609 ****
  36. --- 608,611 ----
  37.   {   /* Add new patch number below this line */
  38. + /**/
  39. +     67,
  40.   /**/
  41.  
  42. -- 
  43. An easy way to determine if you have enough teamwork to be doomed is simply to
  44. measure how long it takes from the time you decide to go to lunch together
  45. until the time you actually eat.
  46.                 (Scott Adams - The Dilbert principle)
  47.  
  48.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  49. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  50.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  51.