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.1.443 < prev    next >
Encoding:
Internet Message Format  |  2003-04-05  |  2.2 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.443 (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.1.443 (extra)
  11. Problem:    Win32: The gvimext.dll build with Borland 5.5 requires another
  12.         DLL.
  13. Solution:   Build a statically linked version by default. (Dan Sharp)
  14. Files:        GvimExt/Make_bc5.mak
  15.  
  16.  
  17. *** ../vim61.442/GvimExt/Make_bc5.mak    Tue Aug 28 11:23:29 2001
  18. --- GvimExt/Make_bc5.mak    Tue Apr  1 21:20:31 2003
  19. ***************
  20. *** 1,10 ****
  21.   all : gvimext.dll
  22.   
  23.   gvimext.obj : gvimext.cpp gvimext.h
  24. !     bcc32 -tWD -c -DFEAT_GETTEXT -w- gvimext.cpp
  25.   
  26.   gvimext.res : gvimext.rc
  27.       brc32 -r gvimext.rc
  28.   
  29.   gvimext.dll : gvimext.obj gvimext.res
  30. !     ilink32 -aa gvimext.obj, gvimext.dll, , c0d32.obj cw32i.lib import32.lib, gvimext.def, gvimext.res
  31. --- 1,25 ----
  32. + ### USEDLL: no for statically linked version of run-time, yes for DLL runtime (requires
  33. + ###         cc3250.dll be available in %PATH%)
  34. + !if ("$(USEDLL)"=="")
  35. + USEDLL = no
  36. + !endif
  37. + !if ("$(USEDLL)"=="yes")
  38. + RT_DEF = -D_RTLDLL
  39. + RT_LIB = cw32i.lib
  40. + !else
  41. + RT_DEF = 
  42. + RT_LIB = cw32.lib
  43. + !endif
  44.   all : gvimext.dll
  45.   
  46.   gvimext.obj : gvimext.cpp gvimext.h
  47. !     bcc32 -tWD -c -DFEAT_GETTEXT $(RT_DEF) -w- gvimext.cpp
  48.   
  49.   gvimext.res : gvimext.rc
  50.       brc32 -r gvimext.rc
  51.   
  52.   gvimext.dll : gvimext.obj gvimext.res
  53. !     ilink32 -aa gvimext.obj, gvimext.dll, , c0d32.obj $(RT_LIB) import32.lib, gvimext.def, gvimext.res
  54. *** ../vim61.442/src/version.c    Sun Apr  6 14:50:20 2003
  55. --- src/version.c    Sun Apr  6 14:53:54 2003
  56. ***************
  57. *** 613,614 ****
  58. --- 613,616 ----
  59.   {   /* Add new patch number below this line */
  60. + /**/
  61. +     443,
  62.   /**/
  63.  
  64. -- 
  65. Two cows are standing together in a field.  One asks the other:
  66. "So what do you think about this Mad Cow Diesease?"
  67. The other replies: "That doesn't concern me. I'm a helicopter."
  68.  
  69.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  70. ///          Creator of Vim - Vi IMproved -- http://www.Vim.org          \\\
  71. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  72.  \\\     Help AIDS victims, buy at Amazon -- http://ICCF.nl/click1.html ///
  73.