commit 60112408010c42ac8e028d05dfefed55428fd04e
parent 1ef7efbc70643f8709b3b8d081fab949b808a296
Author: Ricardo Mones <ricardo@mones.org>
Date: Tue, 7 Feb 2017 21:07:16 +0100
Fix included header
Error message was:
stock_pixmap.c:26:26: fatal error: librsvg/rsvg.h: No such file or directory
Thanks Paul for reporting!
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/stock_pixmap.c b/src/stock_pixmap.c
@@ -23,10 +23,10 @@
#include <glib.h>
#include <gtk/gtk.h>
-#include <librsvg/rsvg.h>
#include <string.h>
#include <dirent.h>
#ifdef HAVE_SVG
+#include <librsvg/rsvg.h>
#include <math.h>
#endif