From 08a2f887b26c89cfb1e1b5715a23d561b75e0dab Mon Sep 17 00:00:00 2001 From: Petri Latvala Date: Fri, 29 Sep 2017 13:51:59 +0300 Subject: lib: Reduce dependency on glib In commit ebd6eb69f57b ("Make igtrc configuration common, with configurable suspend/resume delay") .igtrc handling was moved to igt_core from igt_chamelium. That made everything in IGT depend on GLIB by accident. In short, igt_core.h declared a variable of type GKeyFile*, requiring glib.h. Everything that tried to #include igt_core.h required glib.h to be available, by use of GLIB_CFLAGS. This "worked" so far because CAIRO_CFLAGS contained GLIB_CFLAGS. As the variable is only used by other stuff in lib/, stuff it in its own header file to leave igt_core.h without a dependency to glib.h. Also add a couple of missing #ifdef HAVE_GLIBs around. Reported-by: Felipe De Jesus Ruiz Garcia Signed-off-by: Petri Latvala Reviewed-by: Arkadiusz Hiler --- lib/meson.build | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/meson.build') diff --git a/lib/meson.build b/lib/meson.build index 203be520..54ff4f9b 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -13,6 +13,7 @@ lib_headers = [ 'igt_gvt.h', 'igt_primes.h', 'igt_rand.h', + 'igt_rc.h', 'igt_stats.h', 'igt_sysfs.h', 'igt_x86.h', -- cgit v1.2.3