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 / 7.4 / 7.4.548 < prev    next >
Encoding:
Internet Message Format  |  2014-12-13  |  1.6 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.4.548
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=UTF-8
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 7.4.548
  11. Problem:    Compilation fails with native version of MinGW-w64, because the
  12.             it doesn't have x86_64-w64-mingw32-windres.exe.
  13. Solution:   Use windres instead. (Ken Takata)
  14. Files:      src/Make_cyg_ming.mak
  15.  
  16.  
  17. *** ../vim-7.4.547/src/Make_cyg_ming.mak    2014-11-06 10:02:57.019057492 +0100
  18. --- src/Make_cyg_ming.mak    2014-12-13 20:47:00.291904877 +0100
  19. ***************
  20. *** 366,372 ****
  21. --- 366,376 ----
  22.   endif
  23.   CC := $(CROSS_COMPILE)gcc
  24.   CXX := $(CROSS_COMPILE)g++
  25. + ifeq ($(UNDER_CYGWIN),yes)
  26.   WINDRES := $(CROSS_COMPILE)windres
  27. + else
  28. + WINDRES := windres
  29. + endif
  30.   WINDRES_CC = $(CC)
  31.   
  32.   #>>>>> end of choices
  33. *** ../vim-7.4.547/src/version.c    2014-12-13 20:11:29.582422289 +0100
  34. --- src/version.c    2014-12-13 20:49:27.018361058 +0100
  35. ***************
  36. *** 743,744 ****
  37. --- 743,746 ----
  38.   {   /* Add new patch number below this line */
  39. + /**/
  40. +     548,
  41.   /**/
  42.  
  43. -- 
  44. Article in the first Free Software Magazine: "Bram Moolenaar studied electrical
  45. engineering at the Technical University of Delft and graduated in 1985 on a
  46. multi-processor Unix architecture."
  47. Response by "dimator": Could the school not afford a proper stage for the
  48. ceremony?
  49.  
  50.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  51. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  52. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  53.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  54.