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.337 < prev    next >
Encoding:
Internet Message Format  |  2004-03-08  |  2.2 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.2.337
  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.337 (extra, after 6.2.319)
  11. Problem:    Building gvimext.dll with Mingw doesn't work properly.
  12. Solution:   Fix white space and other details. (Alejandro Lopez-Valencia)
  13. Files:        src/GvimExt/Make_ming.mak
  14.  
  15.  
  16.  
  17. *** ../vim-6.2.336/src/GvimExt/Make_ming.mak    Sat Mar  6 21:04:29 2004
  18. --- src/GvimExt/Make_ming.mak    Tue Mar  9 17:21:00 2004
  19. ***************
  20. *** 22,41 ****
  21.   all: all-before $(DLL) all-after
  22.   
  23.   $(DLL): $(OBJ) $(RES) $(DEFFILE)
  24. !     $(CXX) -shared $(CXXFLAGS) -s -o $@ \ 
  25.           -Wl,--enable-auto-image-base \
  26. !         -Wl,--enable-auto-import \
  27. !         -Wl,--whole-archive \
  28. !              $^ \ 
  29. !         -Wl,--no-whole-archive \
  30.               $(LIBS)
  31.   
  32.   gvimext.o: gvimext.cpp
  33. !     $(CXX) $(CXXFLAGS) -DFEAT_GETTEXT -c $? -o $@ 
  34.   
  35.   $(RES): gvimext_ming.rc
  36. !     $(WINDRES) --input-format=rc --output-format=coff -DMING $? -o $@
  37.   
  38.   clean: clean-custom
  39. !     ${RM}  $(OBJ) $(RES) $(DLL)
  40.   
  41. --- 22,41 ----
  42.   all: all-before $(DLL) all-after
  43.   
  44.   $(DLL): $(OBJ) $(RES) $(DEFFILE)
  45. !     $(CXX) -shared $(CXXFLAGS) -s -o $@  \
  46.           -Wl,--enable-auto-image-base \
  47. !         -Wl,--enable-auto-import  \
  48. !         -Wl,--whole-archive  \
  49. !             $^  \
  50. !         -Wl,--no-whole-archive  \
  51.               $(LIBS)
  52.   
  53.   gvimext.o: gvimext.cpp
  54. !     $(CXX) $(CXXFLAGS) -DFEAT_GETTEXT -c $^ -o $@ 
  55.   
  56.   $(RES): gvimext_ming.rc
  57. !     $(WINDRES) --input-format=rc --output-format=coff -DMING $^ -o $@
  58.   
  59.   clean: clean-custom
  60. !     $(RM)  $(OBJ) $(RES) $(DLL)
  61.   
  62. *** ../vim-6.2.336/src/version.c    Tue Mar  9 17:13:10 2004
  63. --- src/version.c    Tue Mar  9 19:39:49 2004
  64. ***************
  65. *** 639,640 ****
  66. --- 639,642 ----
  67.   {   /* Add new patch number below this line */
  68. + /**/
  69. +     337,
  70.   /**/
  71.  
  72. -- 
  73. Managers are like cats in a litter box.  They instinctively shuffle things
  74. around to conceal what they've done.
  75.                 (Scott Adams - The Dilbert principle)
  76.  
  77.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  78. ///        Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  79. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  80.  \\\  Buy at Amazon and help AIDS victims -- http://ICCF.nl/click1.html ///
  81.