From f0f80f7cf0edd7959bc8fc069da6c9b6d0f141f9 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Sun, 11 Jan 2015 13:44:01 -0800 Subject: [PATCH] makefile: Fix build when compiling under MinGW to avoid reference to un-necessary/non-existent library --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 448c5874..f72e96fa 100644 --- a/makefile +++ b/makefile @@ -758,7 +758,7 @@ else endif ifeq (pcre,$(shell if exist ..\windows-build\PCRE\include\pcre.h echo pcre)) OS_CCDEFS += -DHAVE_PCREPOSIX_H -I$(abspath ../windows-build/PCRE/include) - OS_LDFLAGS += -lpcreposix -lpcre -lpcrecpp -L../windows-build/PCRE/lib/ + OS_LDFLAGS += -lpcreposix -lpcre -L../windows-build/PCRE/lib/ $(info using libpcreposix: $(abspath ../windows-build/PCRE/lib/pcreposix.a) $(abspath ../windows-build/PCRE/include/pcreposix.h)) endif endif