From 9fc3c381ba411780333ef0f6af2bfcf626c4e12e Mon Sep 17 00:00:00 2001 From: John Cupitt Date: Fri, 24 Feb 2012 14:31:12 +0000 Subject: [PATCH] require openslide 3.2.5 or greater 3.2.4 and earlier have a horrible performance problem --- ChangeLog | 4 ++-- TODO | 6 ------ configure.in | 8 ++++---- 3 files changed, 6 insertions(+), 12 deletions(-) diff --git a/ChangeLog b/ChangeLog index 64520c75..46a44251 100644 --- a/ChangeLog +++ b/ChangeLog @@ -7,8 +7,8 @@ - better im_shrink() - added vips_sequential() - new vips_sink_memory() keeps read ordering -- tiff reader supports sequential read -- jpeg reader supports sequential read +- tiff, jpeg, png readers support sequential read +- max/min avoid NaN 20/8/11 started 7.27.0 - version bump for new dev cycle diff --git a/TODO b/TODO index 265be965..9550bc50 100644 --- a/TODO +++ b/TODO @@ -1,12 +1,6 @@ blocking bugs ============= -- argh - - (nip2:11576): GLib-GObject-WARNING **: value "-0.000000" of type - `gdouble' is invalid or out of range for property `yres' of - type `gdouble' - - new binding is still missing constants how do boxed types work? confusing diff --git a/configure.in b/configure.in index ed198bc6..3d7ea791 100644 --- a/configure.in +++ b/configure.in @@ -481,11 +481,11 @@ AC_ARG_WITH([openslide], AS_HELP_STRING([--without-openslide], [build without OpenSlide (default: test)])) if test x"$with_openslide" != x"no"; then - PKG_CHECK_MODULES(OPENSLIDE, openslide >= 3.2.0, - [AC_DEFINE(HAVE_OPENSLIDE,1,[define if you have OpenSlide >= 3.2.0 installed.]) + PKG_CHECK_MODULES(OPENSLIDE, openslide >= 3.2.5, + [AC_DEFINE(HAVE_OPENSLIDE,1,[define if you have OpenSlide >= 3.2.5 installed.]) with_openslide=yes PACKAGES_USED="$PACKAGES_USED openslide"], - [AC_MSG_WARN([OpenSlide >= 3.2.0 not found; disabling virtual slide support]) + [AC_MSG_WARN([OpenSlide >= 3.2.5 not found; disabling virtual slide support]) with_openslide=no ]) fi @@ -737,7 +737,7 @@ accelerate loops with orc: $with_orc ICC profile support with lcms: $with_lcms (version $with_lcms_ver) file import with OpenEXR: $with_OpenEXR file import with OpenSlide: $with_openslide - (requires openslide-3.2.0 or later) + (requires openslide-3.2.5 or later) file import with matio: $with_matio file import with cfitsio: $with_cfitsio text rendering with pangoft2: $with_pangoft2