From 5ac7d58039c723ed505d4d9a2b77020f9bd2b8b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matti=20Lehtim=C3=A4ki?= Date: Tue, 22 Jan 2013 19:27:42 +0200 Subject: Report an error if PCRE library is not available. --- Makefile | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index d2e4ecf..cf18f31 100644 --- a/Makefile +++ b/Makefile @@ -29,6 +29,8 @@ TMPDIR ?= /tmp ### Regexp ifeq (exists, $(shell pkg-config libpcre && echo exists)) REGEXLIB = pcre +else +$(error PCRE library required) endif ### Make sure that necessary options are included: -- cgit v1.2.3