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.476 < prev    next >
Encoding:
Internet Message Format  |  2014-10-15  |  2.4 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.4.476
  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.476
  11. Problem:    MingW: compiling with "XPM=no" doesn't work.
  12. Solution:   Check for the "no" value. (KF Leong)  Also for Cygwin. (Ken
  13.         Takata)
  14. Files:        src/Make_ming.mak, src/Make_cyg.mak
  15.  
  16.  
  17. *** ../vim-7.4.475/src/Make_ming.mak    2014-08-10 16:31:47.376709213 +0200
  18. --- src/Make_ming.mak    2014-10-15 12:00:35.986008598 +0200
  19. ***************
  20. *** 22,28 ****
  21.   #     http://www.matcode.com/mpress.htm
  22.   #
  23.   # Maintained by Ron Aaron <ronaharon@yahoo.com> et al.
  24. ! # Updated 2012 Sep 5.
  25.   
  26.   #>>>>> choose options:
  27.   # set to yes for a debug build
  28. --- 22,28 ----
  29.   #     http://www.matcode.com/mpress.htm
  30.   #
  31.   # Maintained by Ron Aaron <ronaharon@yahoo.com> et al.
  32. ! # Updated 2014 Oct 13.
  33.   
  34.   #>>>>> choose options:
  35.   # set to yes for a debug build
  36. ***************
  37. *** 613,619 ****
  38.   USE_STDCPLUS = yes
  39.   endif
  40.   endif
  41. ! ifdef XPM
  42.   # Only allow XPM for a GUI build.
  43.   ifeq (yes, $(GUI))
  44.   OBJ += $(OUTDIR)/xpm_w32.o
  45. --- 613,619 ----
  46.   USE_STDCPLUS = yes
  47.   endif
  48.   endif
  49. ! ifneq ($(XPM),no)
  50.   # Only allow XPM for a GUI build.
  51.   ifeq (yes, $(GUI))
  52.   OBJ += $(OUTDIR)/xpm_w32.o
  53. *** ../vim-7.4.475/src/Make_cyg.mak    2014-08-10 16:31:47.372709213 +0200
  54. --- src/Make_cyg.mak    2014-10-15 12:06:01.170009309 +0200
  55. ***************
  56. *** 485,491 ****
  57.   endif
  58.   
  59.   ##############################
  60. ! ifdef XPM
  61.   # Only allow XPM for a GUI build.
  62.   DEFINES += -DFEAT_XPM_W32
  63.   INCLUDES += -I$(XPM)/include
  64. --- 485,491 ----
  65.   endif
  66.   
  67.   ##############################
  68. ! ifneq ($(XPM),no)
  69.   # Only allow XPM for a GUI build.
  70.   DEFINES += -DFEAT_XPM_W32
  71.   INCLUDES += -I$(XPM)/include
  72. *** ../vim-7.4.475/src/version.c    2014-10-11 14:47:22.833275547 +0200
  73. --- src/version.c    2014-10-15 12:03:39.186008999 +0200
  74. ***************
  75. *** 743,744 ****
  76. --- 743,746 ----
  77.   {   /* Add new patch number below this line */
  78. + /**/
  79. +     476,
  80.   /**/
  81.  
  82. -- 
  83. Women are probably the main cause of free software starvation.
  84.  
  85.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  86. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  87. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  88.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  89.