Skip to content

Commit 44d5718

Browse files
committed
patch 7.4.1320
Problem: Building with Cygwin or MingW with channel but without Netbeans doesn't work. Solution: Set NETBEANS to "no" when not used.
1 parent 16eb4f8 commit 44d5718

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/Make_cyg_ming.mak

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -679,8 +679,10 @@ ifneq ($(CHANNEL),yes)
679679
# Cannot use Netbeans without CHANNEL
680680
NETBEANS=no
681681
else
682-
# Only allow NETBEANS for a GUI build.
683-
ifeq (yes, $(GUI))
682+
ifneq (yes, $(GUI))
683+
# Cannot use Netbeans without GUI.
684+
NETBEANS=no
685+
else
684686
OBJ += $(OUTDIR)/netbeans.o
685687
LIB += -lwsock32
686688
endif

src/version.c

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

748748
static int included_patches[] =
749749
{ /* Add new patch number below this line */
750+
/**/
751+
1320,
750752
/**/
751753
1319,
752754
/**/

0 commit comments

Comments
 (0)