Karsten Hopp a43ee8
To: vim_dev@googlegroups.com
Karsten Hopp a43ee8
Subject: Patch 7.3.586
Karsten Hopp a43ee8
Fcc: outbox
Karsten Hopp a43ee8
From: Bram Moolenaar <Bram@moolenaar.net>
Karsten Hopp a43ee8
Mime-Version: 1.0
Karsten Hopp a43ee8
Content-Type: text/plain; charset=UTF-8
Karsten Hopp a43ee8
Content-Transfer-Encoding: 8bit
Karsten Hopp a43ee8
------------
Karsten Hopp a43ee8
Karsten Hopp a43ee8
Patch 7.3.586
Karsten Hopp a43ee8
Problem:    When compiling with Cygwin or MingW MEMORYSTATUSEX is not defined.
Karsten Hopp a43ee8
Solution:   Set the default for WINVER to 0x0500.
Karsten Hopp a43ee8
Files:	    src/Make_ming.mak, src/Make_cyg.mak
Karsten Hopp a43ee8
Karsten Hopp a43ee8
Karsten Hopp a43ee8
*** ../vim-7.3.585/src/Make_ming.mak	2012-04-20 16:13:21.000000000 +0200
Karsten Hopp a43ee8
--- src/Make_ming.mak	2012-06-30 21:23:55.000000000 +0200
Karsten Hopp a43ee8
***************
Karsten Hopp a43ee8
*** 52,58 ****
Karsten Hopp a43ee8
  OLE=no
Karsten Hopp a43ee8
  # Set the default $(WINVER) to make it work with pre-Win2k
Karsten Hopp a43ee8
  ifndef WINVER
Karsten Hopp a43ee8
! WINVER = 0x0400
Karsten Hopp a43ee8
  endif
Karsten Hopp a43ee8
  # Set to yes to enable Cscope support
Karsten Hopp a43ee8
  CSCOPE=yes
Karsten Hopp a43ee8
--- 52,58 ----
Karsten Hopp a43ee8
  OLE=no
Karsten Hopp a43ee8
  # Set the default $(WINVER) to make it work with pre-Win2k
Karsten Hopp a43ee8
  ifndef WINVER
Karsten Hopp a43ee8
! WINVER = 0x0500
Karsten Hopp a43ee8
  endif
Karsten Hopp a43ee8
  # Set to yes to enable Cscope support
Karsten Hopp a43ee8
  CSCOPE=yes
Karsten Hopp a43ee8
*** ../vim-7.3.585/src/Make_cyg.mak	2011-09-30 16:56:00.000000000 +0200
Karsten Hopp a43ee8
--- src/Make_cyg.mak	2012-06-30 21:23:42.000000000 +0200
Karsten Hopp a43ee8
***************
Karsten Hopp a43ee8
*** 1,6 ****
Karsten Hopp a43ee8
  #
Karsten Hopp a43ee8
  # Makefile for VIM on Win32, using Cygnus gcc
Karsten Hopp a43ee8
! # Last updated by Dan Sharp.  Last Change: 2010 Nov 03
Karsten Hopp a43ee8
  #
Karsten Hopp a43ee8
  # Also read INSTALLpc.txt!
Karsten Hopp a43ee8
  #
Karsten Hopp a43ee8
--- 1,6 ----
Karsten Hopp a43ee8
  #
Karsten Hopp a43ee8
  # Makefile for VIM on Win32, using Cygnus gcc
Karsten Hopp a43ee8
! # Last updated by Dan Sharp.  Last Change: 2012 Jun 30
Karsten Hopp a43ee8
  #
Karsten Hopp a43ee8
  # Also read INSTALLpc.txt!
Karsten Hopp a43ee8
  #
Karsten Hopp a43ee8
***************
Karsten Hopp a43ee8
*** 48,54 ****
Karsten Hopp a43ee8
  #		-L/lib/w32api to EXTRA_LIBS.
Karsten Hopp a43ee8
  # POSTSCRIPT	no or yes: set to yes for PostScript printing (no)
Karsten Hopp a43ee8
  # FEATURES	TINY, SMALL, NORMAL, BIG or HUGE (BIG)
Karsten Hopp a43ee8
! # WINVER	Lowest Win32 version to support.  (0x0400)
Karsten Hopp a43ee8
  # CSCOPE	no or yes: to include cscope interface support (yes)
Karsten Hopp a43ee8
  # OPTIMIZE	SPACE, SPEED, or MAXSPEED: set optimization level (MAXSPEED)
Karsten Hopp a43ee8
  # NETBEANS	no or yes: to include netbeans interface support (yes when GUI
Karsten Hopp a43ee8
--- 48,54 ----
Karsten Hopp a43ee8
  #		-L/lib/w32api to EXTRA_LIBS.
Karsten Hopp a43ee8
  # POSTSCRIPT	no or yes: set to yes for PostScript printing (no)
Karsten Hopp a43ee8
  # FEATURES	TINY, SMALL, NORMAL, BIG or HUGE (BIG)
Karsten Hopp a43ee8
! # WINVER	Lowest Win32 version to support.  (0x0500)
Karsten Hopp a43ee8
  # CSCOPE	no or yes: to include cscope interface support (yes)
Karsten Hopp a43ee8
  # OPTIMIZE	SPACE, SPEED, or MAXSPEED: set optimization level (MAXSPEED)
Karsten Hopp a43ee8
  # NETBEANS	no or yes: to include netbeans interface support (yes when GUI
Karsten Hopp a43ee8
***************
Karsten Hopp a43ee8
*** 85,91 ****
Karsten Hopp a43ee8
  endif
Karsten Hopp a43ee8
  
Karsten Hopp a43ee8
  ifndef WINVER
Karsten Hopp a43ee8
! WINVER = 0x0400
Karsten Hopp a43ee8
  endif
Karsten Hopp a43ee8
  
Karsten Hopp a43ee8
  ifndef CSCOPE
Karsten Hopp a43ee8
--- 85,91 ----
Karsten Hopp a43ee8
  endif
Karsten Hopp a43ee8
  
Karsten Hopp a43ee8
  ifndef WINVER
Karsten Hopp a43ee8
! WINVER = 0x0500
Karsten Hopp a43ee8
  endif
Karsten Hopp a43ee8
  
Karsten Hopp a43ee8
  ifndef CSCOPE
Karsten Hopp a43ee8
*** ../vim-7.3.585/src/version.c	2012-07-06 13:36:36.000000000 +0200
Karsten Hopp a43ee8
--- src/version.c	2012-07-06 13:39:41.000000000 +0200
Karsten Hopp a43ee8
***************
Karsten Hopp a43ee8
*** 716,717 ****
Karsten Hopp a43ee8
--- 716,719 ----
Karsten Hopp a43ee8
  {   /* Add new patch number below this line */
Karsten Hopp a43ee8
+ /**/
Karsten Hopp a43ee8
+     586,
Karsten Hopp a43ee8
  /**/
Karsten Hopp a43ee8
Karsten Hopp a43ee8
-- 
Karsten Hopp a43ee8
From "know your smileys":
Karsten Hopp a43ee8
 :-&	Eating spaghetti
Karsten Hopp a43ee8
Karsten Hopp a43ee8
 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
Karsten Hopp a43ee8
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
Karsten Hopp a43ee8
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
Karsten Hopp a43ee8
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///