summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorBob Friesenhahn <bfriesen@simple.dallas.tx.us>2006-01-09 16:56:03 +0000
committerBob Friesenhahn <bfriesen@simple.dallas.tx.us>2006-01-09 16:56:03 +0000
commitd6b209d3b4811889e6338c0201da02576622c41b (patch)
tree269d9fbe745f97f05caae0a22996a62f37ef67ac /configure.ac
parentc1961f4111b1a0893dea4c06dd170bbf89f2cbc7 (diff)
downloadlibtiff-git-d6b209d3b4811889e6338c0201da02576622c41b.tar.gz
* configure.ac: Fix with_default_strip_size comparison as reported
by Norihiko Murase.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
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