gtk+: Disable incompatible-pointer-types warning as error

Fixes build with GCC-14 which treats this warning as error by
default

Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Khem Raj 2024-05-09 17:49:36 -07:00
parent e47585ffc8
commit 064f6fae4f
No known key found for this signature in database
GPG Key ID: BB053355919D3314

View File

@ -32,3 +32,5 @@ python populate_packages:prepend () {
if (d.getVar('DEBIAN_NAMES')):
d.setVar(d.expand('PKG:${PN}'), '${MLPREFIX}libgtk-2.0')
}
CFLAGS += "-Wno-error=incompatible-pointer-types"