mutter compilation fails:

src/backends/meta-input-settings.c:1245:78: error: format ‘%lx’
expects argument of type ‘long unsigned int’
fixed as:
path = g_strdup_printf ("/org/gnome/settings-daemon/peripherals/wacom/%s/%llx/",

src/core/window.c:3528:27: error: comparison between signed and
unsigned integer expressions
fixed as:
if (info->winsys_id == (int) winsys_id)

src/core/window.c:3734:28: error: comparison between signed and
unsigned integer expressions
fixed as:
if ((int) old_output_winsys_id != window->monitor->winsys_id

src/core/window.c:3528:31: error: ‘init’ undeclared (first use in this function)
fixed:
if (info->winsys_id == (int) winsys_id)

core/window.c:3528:31: note: each undeclared identifier is reported
only once for each function it appears in core/window.c:3528:37:
error: expected ‘)’ before ‘winsys_id’
fixed by the previous statement

backends/native/meta-monitor-manager-kms.c:851:41: error: comparison
between signed and unsigned integer expressions
fixed as:
if (manager->crtcs[i].crtc_id == (int) output_kms->current_encoder->crtc_id)

also complaining about mutter-clutter

Sami
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-dev
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Reply via email to