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.2.125 < prev    next >
Encoding:
Internet Message Format  |  2003-10-16  |  1.9 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.2.125
  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.2.125 (after 6.2.107)
  11. Problem:    The "winsock2.h" file isn't always available.
  12. Solution:   Don't include this header file.
  13. Files:        src/netbeans.c
  14.  
  15.  
  16. *** ../vim-6.2.124/src/netbeans.c    Sun Oct 12 16:42:14 2003
  17. --- src/netbeans.c    Tue Oct 14 15:41:00 2003
  18. ***************
  19. *** 28,37 ****
  20.   #  include <tchar.h>    /* for _T definition for TRACEn macros */
  21.   # endif
  22.   # include <io.h>
  23. ! # include <winsock2.h>
  24. ! /* WinSock API is separated from C API
  25. !  * So we can't use read, write, errno...
  26. !  */
  27.   # define sock_errno WSAGetLastError()
  28.   # define ECONNREFUSED WSAECONNREFUSED
  29.   # define sock_write(sd, buf, len) send(sd, buf, len, 0)
  30. --- 28,35 ----
  31.   #  include <tchar.h>    /* for _T definition for TRACEn macros */
  32.   # endif
  33.   # include <io.h>
  34. ! /* WinSock API is separated from C API, thus we can't use read(), write(),
  35. !  * errno... */
  36.   # define sock_errno WSAGetLastError()
  37.   # define ECONNREFUSED WSAECONNREFUSED
  38.   # define sock_write(sd, buf, len) send(sd, buf, len, 0)
  39. *** ../vim-6.2.124/src/version.c    Fri Oct 17 12:08:46 2003
  40. --- src/version.c    Fri Oct 17 12:11:48 2003
  41. ***************
  42. *** 639,640 ****
  43. --- 639,642 ----
  44.   {   /* Add new patch number below this line */
  45. + /**/
  46. +     125,
  47.   /**/
  48.  
  49. -- 
  50. ARTHUR: This new learning amazes me, Sir Bedevere.  Explain again how sheep's
  51.         bladders may be employed to prevent earthquakes.
  52.                  "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
  53.  
  54.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  55. ///          Creator of Vim - Vi IMproved -- http://www.Vim.org          \\\
  56. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  57.  \\\  Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html  ///
  58.