From 4b4156e6bad1333e42afe22b482effc653d67416 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sun, 19 Jul 2015 22:09:35 -0400 Subject: [PATCH] Fixed compile for MinGW --- GNUmakefile | 4 ++++ 1 file changed, 4 insertions(+) mode change 100644 => 100755 GNUmakefile diff --git a/GNUmakefile b/GNUmakefile old mode 100644 new mode 100755 index 0afc9410..5e97e0b4 --- a/GNUmakefile +++ b/GNUmakefile @@ -166,6 +166,10 @@ endif endif SRCS = $(filter-out pch.cpp cryptlib_bds.cpp winpipes.cpp, $(wildcard *.cpp)) +ifneq ($(IS_MINGW),0) +SRCS += winpipes.cpp +endif + OBJS = $(SRCS:.cpp=.o) # test.o needs to be after bench.o for cygwin 1.1.4 (possible ld bug?)