diff options
Diffstat (limited to 'gdk-pixbuf/gdk-pixbuf-io.c')
-rw-r--r-- | gdk-pixbuf/gdk-pixbuf-io.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gdk-pixbuf/gdk-pixbuf-io.c b/gdk-pixbuf/gdk-pixbuf-io.c index 646b0f1eaa..56271e16e0 100644 --- a/gdk-pixbuf/gdk-pixbuf-io.c +++ b/gdk-pixbuf/gdk-pixbuf-io.c @@ -396,6 +396,9 @@ gdk_pixbuf_io_init (void) #ifdef INCLUDE_jasper load_one_builtin_module (jasper); #endif +#ifdef INCLUDE_qtif + load_one_builtin_module (qtif); +#endif #ifdef INCLUDE_gdiplus /* We don't bother having the GDI+ loaders individually selectable * for building in or not. @@ -589,6 +592,7 @@ module (tga); module (pcx); module (icns); module (jasper); +module (qtif); module (gdip_ico); module (gdip_wmf); module (gdip_emf); @@ -667,6 +671,9 @@ gdk_pixbuf_load_module_unlocked (GdkPixbufModule *image_module, #ifdef INCLUDE_jasper try_module (jasper,jasper); #endif +#ifdef INCLUDE_qtif + try_module (qtif,qtif); +#endif #ifdef INCLUDE_gdiplus try_module (ico,gdip_ico); try_module (wmf,gdip_wmf); |