From 0fc8bd091a374e11cf7b517e01ab0712161049d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Wed, 6 Apr 2016 19:49:19 +0200 Subject: Fix hardcoded path for freetype2 includes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- configure.in.in | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'configure.in.in') diff --git a/configure.in.in b/configure.in.in index b3c83b1..62cbc08 100644 --- a/configure.in.in +++ b/configure.in.in @@ -1 +1,6 @@ #MIN_CONFIG + +PKG_CHECK_MODULES(FT2, freetype2, have_ft2=yes, have_ft2=no) +if test "x$have_ft2" = "xno"; then + AC_MSG_ERROR([freetype2 library is needed but not found on our system]) +fi -- cgit v1.2.1