From 08fdad56eb26eefd7c8021fef8c6800bcf6768d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Mon, 26 Sep 2016 21:14:13 +0200 Subject: [PATCH] Fix Travis build --- src/sdtui.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/sdtui.c b/src/sdtui.c index b9ed153..b7a54da 100644 --- a/src/sdtui.c +++ b/src/sdtui.c @@ -277,7 +277,9 @@ app_load_color (Application *self, GKeyFile *kf, const gchar *name, int id) else if (!strcmp (*it, "ul")) attrs.attrs |= A_UNDERLINE; else if (!strcmp (*it, "blink")) attrs.attrs |= A_BLINK; else if (!strcmp (*it, "reverse")) attrs.attrs |= A_REVERSE; +#ifdef A_ITALIC else if (!strcmp (*it, "italic")) attrs.attrs |= A_ITALIC; +#endif // A_ITALIC } g_strfreev (values);