diff options
author | Kevin Peng <kevin@zycomtech.com> | 2009-10-25 22:03:19 +0100 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2009-10-26 00:08:08 +0100 |
commit | 4b22b461b6ece49563fef808ff8d3b2fe6660713 (patch) | |
tree | 37677ae2d1c125bba3954930574edb9476bf324c /configure.in | |
parent | 3c510f028f9a399c80851d2cb8c230e930abd4ff (diff) | |
download | gtk+-4b22b461b6ece49563fef808ff8d3b2fe6660713.tar.gz |
GdkPixbuf loader for QTIF format
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=366217
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 1e0a0a893a..13409b0795 100644 --- a/configure.in +++ b/configure.in @@ -990,7 +990,7 @@ fi # because some important apps like GIMP need to read and write # arbitrary tEXt chunks which doesn't seem to be possible through GDI+ -all_loaders="ani,icns,pcx,ras,tga,png,pnm,wbmp,xbm,xpm" +all_loaders="ani,icns,pcx,ras,tga,png,pnm,wbmp,xbm,xpm,qtif" if test x$with_libjasper != xno; then all_loaders="$all_loaders,jasper" fi @@ -1061,6 +1061,7 @@ AM_CONDITIONAL(INCLUDE_TGA, [test x"$INCLUDE_tga" = xyes]) AM_CONDITIONAL(INCLUDE_PCX, [test x"$INCLUDE_pcx" = xyes]) AM_CONDITIONAL(INCLUDE_ICNS, [test x"$INCLUDE_icns" = xyes]) AM_CONDITIONAL(INCLUDE_JASPER, [test x"$INCLUDE_jasper" = xyes]) +AM_CONDITIONAL(INCLUDE_QTIF, [test x"$INCLUDE_qtif" = xyes]) # As all GDI+ loaders are either built-in or not, arbitrarily just # check one of the variables here AM_CONDITIONAL(INCLUDE_GDIPLUS, [test x"$INCLUDE_gdip_ico" = xyes]) |