From e9c8ca5c16307c2366d4128507b57f7a0d4e6a2b Mon Sep 17 00:00:00 2001 From: H.G.Muller Date: Fri, 2 Dec 2016 11:16:52 +0100 Subject: [PATCH] Add msimg32 library to makefile.gcc for WinBoard build The AlphaBlend function would be an undefined reference without this library. --- winboard/makefile.gcc | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/winboard/makefile.gcc b/winboard/makefile.gcc index 77fc0b9..92c2a6d 100644 --- a/winboard/makefile.gcc +++ b/winboard/makefile.gcc @@ -50,7 +50,7 @@ else endif CF = -c $(WARN) -pipe $(CFDEBUG) $(DEFS) -I. -I.. CFLAGS = $(CF) $(ARCH) $(OPTS) $(CFCYG) -LFLAGS = $(LFCYG) $(CFDEBUG) -fpic -s -mwindows -lwsock32 -lwinmm -lcomctl32 +LFLAGS = $(LFCYG) $(CFDEBUG) -fpic -s -mwindows -lwsock32 -lwinmm -lcomctl32 -lmsimg32 all: $(PROJ).exe -- 1.7.0.4