From d6b209d3b4811889e6338c0201da02576622c41b Mon Sep 17 00:00:00 2001 From: Bob Friesenhahn Date: Mon, 9 Jan 2006 16:56:03 +0000 Subject: [PATCH] * configure.ac: Fix with_default_strip_size comparison as reported by Norihiko Murase. --- ChangeLog | 5 +++++ configure.ac | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index f0c71861..a59fcba8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-01-09 Bob Friesenhahn + + * configure.ac: Fix with_default_strip_size comparison as reported + by Norihiko Murase. + 2006-01-08 Bob Friesenhahn * test/Makefile.am (LIBTIFF): Due to linking against libtiff diff --git a/configure.ac b/configure.ac index 997bd344..5475f8c4 100644 --- a/configure.ac +++ b/configure.ac @@ -454,7 +454,7 @@ AC_ARG_WITH(default-strip-size, if test "$HAVE_STRIPCHOP" = "yes" ; then AC_DEFINE(STRIPCHOP_DEFAULT,TIFF_STRIPCHOP,[Support strip chopping (whether or not to convert single-strip uncompressed images to mutiple strips of specified size to reduce memory usage)]) - if test "x$with_default_strip_size" == "x" ; then + if test "x$with_default_strip_size" = "x" ; then with_default_strip_size="8192" fi