From ea05f2fefd98a1f3dc51df674bce2e2a4b7b502c Mon Sep 17 00:00:00 2001 From: Tanzinul Islam Date: Sat, 18 Aug 2018 16:17:50 +0100 Subject: [PATCH] Fix build for MinGW due to deleted winpipes.cpp (#705) On my MinGW-w64 setup, the build failed: >mingw32-make: *** No rule to make target 'winpipes.o', needed by 'libcryptopp.a'. >mingw32-make: Target 'default' not remade because of errors. Looks like `winpipes.cpp` was removed in f2171cbe2 but not de-listed from the `GNUmakefile`. Remove it. --- GNUmakefile | 1 - 1 file changed, 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index 531b5d19..66ec5493 100755 --- a/GNUmakefile +++ b/GNUmakefile @@ -771,7 +771,6 @@ SRCS := cryptlib.cpp cpu.cpp integer.cpp $(filter-out cryptlib.cpp cpu.cpp integ INCL := $(filter-out resource.h,$(sort $(wildcard *.h))) ifneq ($(IS_MINGW),0) -SRCS += winpipes.cpp INCL += resource.h endif