Disable the GDI+ loaders by default as they are broken.

This commit is contained in:
Tor Lillqvist 2009-07-16 22:03:33 +03:00
parent 6a98939720
commit 4d282879be

View File

@ -829,8 +829,9 @@ AC_ARG_WITH(libjasper,
[disable JPEG2000 loader for gdk-pixbuf])])
AC_ARG_ENABLE(gdiplus,
[AC_HELP_STRING([--disable-gdiplus],
[disable GDI+ loaders for gdk-pixbuf])])
[AC_HELP_STRING([--enable-gdiplus],
[enble GDI+ loaders for gdk-pixbuf (currently known to be broken)])],,
[enable_gdiplus=no])
AM_CONDITIONAL(BUILD_GDIPLUS_LOADERS, [ test x$os_win32 = xyes && test x$enable_gdiplus != xno ])