From: Stefan Agner Date: Fri, 1 Mar 2019 22:58:26 +0000 (+0100) Subject: gdk-pixbuf: fix Meson variable names X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~15170 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e11e4ebb521882ec64296e65b901ff1d9bccc23a;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git gdk-pixbuf: fix Meson variable names With 2.38.0 gdk-pixbuf dopped the enable_ prefix from the Meson build options. Signed-off-by: Stefan Agner Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.38.0.bb b/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.38.0.bb index 3a544bd8a60..448e8ab40e6 100644 --- a/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.38.0.bb +++ b/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.38.0.bb @@ -58,10 +58,10 @@ PACKAGECONFIG ??= "${GDK_PIXBUF_LOADERS}" PACKAGECONFIG_linuxstdbase = "${@bb.utils.filter('DISTRO_FEATURES', 'x11', d)} ${GDK_PIXBUF_LOADERS}" PACKAGECONFIG_class-native = "${GDK_PIXBUF_LOADERS}" -PACKAGECONFIG[png] = "-Denable_png=true,-Denable_png=false,libpng" -PACKAGECONFIG[jpeg] = "-Denable_jpeg=true,-Denable_jpeg=false,jpeg" -PACKAGECONFIG[tiff] = "-Denable_tiff=true,-Denable_tiff=false,tiff" -PACKAGECONFIG[jpeg2000] = "-Denable_jasper=true,-Denable_jasper=false,jasper" +PACKAGECONFIG[png] = "-Dpng=true,-Dpng=false,libpng" +PACKAGECONFIG[jpeg] = "-Djpeg=true,-Djpeg=false,jpeg" +PACKAGECONFIG[tiff] = "-Dtiff=true,-Dtiff=false,tiff" +PACKAGECONFIG[jpeg2000] = "-Djasper=true,-Djasper=false,jasper" PACKAGECONFIG[x11] = "-Dx11=true,-Dx11=false,virtual/libx11"