summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorAndrey Kiselev <dron@ak4719.spb.edu>2006-02-07 14:49:40 +0000
committerAndrey Kiselev <dron@ak4719.spb.edu>2006-02-07 14:49:40 +0000
commitcd97834bedaa31a2f281c7751f0d6395e5a49145 (patch)
tree2042e271a7cf3ca2fc70e45013395fa13cae00c6 /configure.ac
parent0a02af9e2dab1a17952d2950a901991e79dd36f8 (diff)
downloadlibtiff-git-cd97834bedaa31a2f281c7751f0d6395e5a49145.tar.gz
*** empty log message ***
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 4 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 5475f8c4..31eec512 100644
--- a/configure.ac
+++ b/configure.ac
@@ -451,10 +451,12 @@ AC_ARG_WITH(default-strip-size,
AS_HELP_STRING([--with-default-strip-size=SIZE],
[default size of the strip in bytes (when strip chopping enabled) [[default=8192]]]),,)
-if test "$HAVE_STRIPCHOP" = "yes" ; then
+if test "$HAVE_STRIPCHOP" = "yes" \
+ -a "x$with_default_strip_size" != "xno"; 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" \
+ -o "x$with_default_strip_size" = "xyes"; then
with_default_strip_size="8192"
fi