1
1
mirror of https://gitlab.gnome.org/GNOME/gimp.git synced 2025-10-06 05:22:40 +02:00

Compare commits

...

1 Commits

Author SHA1 Message Date
Øyvind Kolås
b468b0b1a2 app/gegl: avoid double registration of format with newer babl 2024-02-16 11:53:25 +00:00

View File

@@ -38,6 +38,8 @@
void
gimp_babl_init (void)
{
// in newer version of babl these format names are pre-registered
#if (BABL_MINOR_VERSION == 1 && BABL_MICRO_VERSION <= 108)
static const gchar *babl_types[] =
{
"u8",
@@ -118,6 +120,7 @@ gimp_babl_init (void)
babl_component ("A"),
NULL);
}
#endif
}
void