* configure.ac: Fix with_default_strip_size comparison as reported

by Norihiko Murase.
This commit is contained in:
Bob Friesenhahn 2006-01-09 16:56:03 +00:00
parent c1961f4111
commit d6b209d3b4
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-01-09 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
* configure.ac: Fix with_default_strip_size comparison as reported
by Norihiko Murase.
2006-01-08 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
* test/Makefile.am (LIBTIFF): Due to linking against libtiff

View File

@ -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