Skip to content

Commit e5f2be6

Browse files
committed
patch 7.4.1148
Problem: Default for MingW and Cygwin is still "normal". Solution: Use "huge" as default. (Ken Takata)
1 parent 88e8f9f commit e5f2be6

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

src/Make_cyg_ming.mak

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ GUI=yes
3939
DIRECTX=no
4040
# FEATURES=[TINY | SMALL | NORMAL | BIG | HUGE]
4141
# Set to TINY to make minimal version (few features).
42-
FEATURES=BIG
42+
FEATURES=HUGE
4343
# Set to one of i386, i486, i586, i686 as the minimum target processor.
4444
# For amd64/x64 architecture set ARCH=x86-64 .
4545
ARCH=i386

src/Make_mvc.mak

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#
2121
# !!!! After changing features do "nmake clean" first !!!!
2222
#
23-
# Feature Set: FEATURES=[TINY, SMALL, NORMAL, BIG, HUGE] (default is BIG)
23+
# Feature Set: FEATURES=[TINY, SMALL, NORMAL, BIG, HUGE] (default is HUGE)
2424
#
2525
# GUI interface: GUI=yes (default is no)
2626
#
@@ -950,7 +950,7 @@ CFLAGS = $(CFLAGS) -DMSWINPS
950950
# FEATURES: TINY, SMALL, NORMAL, BIG or HUGE
951951
#
952952
!if "$(FEATURES)"==""
953-
FEATURES = BIG
953+
FEATURES = HUGE
954954
!endif
955955
CFLAGS = $(CFLAGS) -DFEAT_$(FEATURES)
956956

src/version.c

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

742742
static int included_patches[] =
743743
{ /* Add new patch number below this line */
744+
/**/
745+
1148,
744746
/**/
745747
1147,
746748
/**/

0 commit comments

Comments
 (0)