On Tue, Sep 5, 2023 at 10:07 PM Marc-André Lureau <marcandre.lur...@gmail.com> wrote: > Indeed, and it is disabled not by Kconfig but by meson: > system_ss.add(when: [pixman, 'CONFIG_ATI_VGA'], if_true: > files('ati.c', 'ati_2d.c', 'ati_dbg.c'))
It's better to add a "depends on", so that it fails to compile with --disable-pixman. Without it, you're left with possible runtime failures where boards expect ATI_VGA to be there. Paolo