From a83847e4c3dc6147278599af41261f063f69f6f7 Mon Sep 17 00:00:00 2001 From: Michael Gehring Date: Tue, 29 Mar 2016 22:33:57 +0200 Subject: [PATCH] Actually use libpcre Linking libpcre has no effect, the posix functions are provided by libpcreposix. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b1cf9ce..6b07f19 100644 --- a/Makefile +++ b/Makefile @@ -38,7 +38,7 @@ endif ifneq ($(strip $(USELIBPCRE)),) CPPFLAGS+=-DLIBPCRE - LIBS:=$(LIBS) -lpcre + LIBS:=$(LIBS) -lpcreposix endif ifneq ($(strip $(USELIBCONFIG)),)