From 6d2c3dce2570bf7cbde0dcd9db78941bb6776359 Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Tue, 29 May 2018 14:12:00 +0100 Subject: [PATCH] [kandinsky] use pkg-config instead of freetype-config Since freetype2 version 2.9.1 freetype-config has been deprecated and is not installed by default anymore: https://sourceforge.net/projects/freetype/files/freetype2/2.9.1/ --- kandinsky/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kandinsky/Makefile b/kandinsky/Makefile index 2443339d8..95d46eab1 100644 --- a/kandinsky/Makefile +++ b/kandinsky/Makefile @@ -30,8 +30,8 @@ generated_headers += $(addprefix kandinsky/src/, small_font.h large_font.h) small_font_files = $(addprefix kandinsky/src/, small_font.h small_font.c) large_font_files = $(addprefix kandinsky/src/, large_font.h large_font.c) -RASTERIZER_CFLAGS := -std=c99 `freetype-config --cflags` -RASTERIZER_LDFLAGS := `freetype-config --libs` +RASTERIZER_CFLAGS := -std=c99 `pkg-config freetype2 --cflags` +RASTERIZER_LDFLAGS := `pkg-config freetype2 --libs` ifdef LIBPNG_PATH small_font_files += kandinsky/src/small_font.png