From 0652cd016b59911aea36fdd995a2c6ebbf34b70c Mon Sep 17 00:00:00 2001 From: Jehan Date: Mon, 15 Aug 2016 15:06:35 +0200 Subject: [PATCH] tools: invert-svg needs glib and GIO dependencies. --- tools/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/Makefile.am b/tools/Makefile.am index 0e7c550d6b..78dadb5a2a 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -48,9 +48,9 @@ test_clipboard_LDADD = $(GTK_LIBS) invert_svg_SOURCES = invert-svg.c -invert_svg_CFLAGS = $(SVG_CFLAGS) +invert_svg_CFLAGS = $(SVG_CFLAGS) $(GLIB_CFLAGS) $(GIO_CFLAGS) -invert_svg_LDADD = $(SVG_LIBS) +invert_svg_LDADD = $(SVG_LIBS) $(GLIB_LIBS) $(GIO_LIBS) compute_svg_viewbox_SOURCES = compute-svg-viewbox.c