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.226 < prev    next >
Encoding:
Internet Message Format  |  2004-02-02  |  3.2 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.2.226 (extra)
  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.226 (after 6.2.107) (extra)
  11. Problem:    The "ws2-32.lib" file isn't always available.
  12. Solution:   Use "WSock32.lib" instead. (Taro Muraoka, Dan Sharp)
  13. Files:        src/Make_cyg.mak, src/Make_ming.mak, src/Make_mvc.mak
  14.  
  15.  
  16. *** ../vim-6.2.225/src/Make_cyg.mak    Tue Jan  6 16:33:35 2004
  17. --- src/Make_cyg.mak    Tue Feb  3 10:47:32 2004
  18. ***************
  19. *** 1,6 ****
  20.   #
  21.   # Makefile for VIM on Win32, using Cygnus gcc
  22. ! # Last updated by Dan Sharp.  Last Change: 2004 Jan 03
  23.   #
  24.   # This compiles Vim as a Windows application.  If you want Vim to run as a
  25.   # Cygwin application use the Makefile (just like on Unix).
  26. --- 1,6 ----
  27.   #
  28.   # Makefile for VIM on Win32, using Cygnus gcc
  29. ! # Last updated by Dan Sharp.  Last Change: 2004 Feb 03
  30.   #
  31.   # This compiles Vim as a Windows application.  If you want Vim to run as a
  32.   # Cygwin application use the Makefile (just like on Unix).
  33. ***************
  34. *** 296,302 ****
  35.   ifeq (yes, $(NETBEANS))
  36.   DEFINES += -DFEAT_NETBEANS_INTG
  37.   EXTRA_OBJS += $(OUTDIR)/netbeans.o $(OUTDIR)/gui_beval.o
  38. ! EXTRA_LIBS += -lws2_32
  39.   
  40.   ifeq (yes, $(DEBUG))
  41.   DEFINES += -DNBDEBUG
  42. --- 296,302 ----
  43.   ifeq (yes, $(NETBEANS))
  44.   DEFINES += -DFEAT_NETBEANS_INTG
  45.   EXTRA_OBJS += $(OUTDIR)/netbeans.o $(OUTDIR)/gui_beval.o
  46. ! EXTRA_LIBS += -lwsock32
  47.   
  48.   ifeq (yes, $(DEBUG))
  49.   DEFINES += -DNBDEBUG
  50. *** ../vim-6.2.225/src/Make_ming.mak    Tue Jan  6 16:33:35 2004
  51. --- src/Make_ming.mak    Tue Feb  3 10:47:43 2004
  52. ***************
  53. *** 379,385 ****
  54.   endif
  55.   ifeq ($(NETBEANS),yes)
  56.   OBJ += $(OUTDIR)/netbeans.o $(OUTDIR)/gui_beval.o
  57. ! LIB += -lws2_32
  58.   endif
  59.   ifdef XPM
  60.   OBJ += $(OUTDIR)/xpm_w32.o
  61. --- 379,385 ----
  62.   endif
  63.   ifeq ($(NETBEANS),yes)
  64.   OBJ += $(OUTDIR)/netbeans.o $(OUTDIR)/gui_beval.o
  65. ! LIB += -lwsock32
  66.   endif
  67.   ifdef XPM
  68.   OBJ += $(OUTDIR)/xpm_w32.o
  69. *** ../vim-6.2.225/src/Make_mvc.mak    Sun Oct 12 16:42:14 2003
  70. --- src/Make_mvc.mak    Fri Oct 17 19:26:10 2003
  71. ***************
  72. *** 199,205 ****
  73.   NBDEBUG_INCL    = nbdebug.h
  74.   NBDEBUG_SRC    = nbdebug.c
  75.   !endif
  76. ! NETBEANS_LIB   = Ws2_32.lib
  77.   !endif
  78.   
  79.   !ifdef XPM
  80. --- 199,205 ----
  81.   NBDEBUG_INCL    = nbdebug.h
  82.   NBDEBUG_SRC    = nbdebug.c
  83.   !endif
  84. ! NETBEANS_LIB   = WSock32.lib
  85.   !endif
  86.   
  87.   !ifdef XPM
  88. *** ../vim-6.2.225/src/version.c    Mon Feb  2 13:02:59 2004
  89. --- src/version.c    Tue Feb  3 16:12:44 2004
  90. ***************
  91. *** 639,640 ****
  92. --- 639,642 ----
  93.   {   /* Add new patch number below this line */
  94. + /**/
  95. +     226,
  96.   /**/
  97.  
  98. -- 
  99. The technology involved in making anything invisible is so infinitely
  100. complex that nine hundred and ninety-nine billion, nine hundred and
  101. ninety-nine million, nine hundred and ninety-nine thousand, nine hundred
  102. and ninety-nine times out of a trillion it is much simpler and more
  103. effective just to take the thing away and do without it.
  104.         -- Douglas Adams, "The Hitchhiker's Guide to the Galaxy"
  105.  
  106.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  107. ///        Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  108. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  109.  \\\  Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html  ///
  110.