On Tue, Sep 27, 2016 at 10:19 PM, Sami Tarazi <[email protected]> wrote:

> 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


Hi Sami,

Have you built gnome-settings-daemon yet? That was a bit further back in
the chapter.

Also, have you installed libinput, libwacom, and xf86-input-wacom? Those
were required as part of gnome-settings-daemon
-- 
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