Skip to content

Commit bd00d0e

Browse files
committed
updated for version 7.3.500
Problem: Ming makefile unconditionally sets WINVER. Solution: Only defined when not already defined. (Yasuhiro Matsumoto)
1 parent 3b05ce3 commit bd00d0e

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/Make_ming.mak

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ POSTSCRIPT=no
5151
# set to yes to enable OLE support
5252
OLE=no
5353
# Set the default $(WINVER) to make it work with pre-Win2k
54+
ifndef WINVER
5455
WINVER = 0x0400
56+
endif
5557
# Set to yes to enable Cscope support
5658
CSCOPE=yes
5759
# Set to yes to enable Netbeans support

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -714,6 +714,8 @@ static char *(features[]) =
714714

715715
static int included_patches[] =
716716
{ /* Add new patch number below this line */
717+
/**/
718+
500,
717719
/**/
718720
499,
719721
/**/

0 commit comments

Comments
 (0)