*** empty log message ***

This commit is contained in:
Andrey Kiselev 2006-02-07 14:49:40 +00:00
parent 0a02af9e2d
commit cd97834bed
2 changed files with 8 additions and 4 deletions

6
configure vendored
View File

@ -19735,14 +19735,16 @@ if test "${with_default_strip_size+set}" = set; then
fi; fi;
if test "$HAVE_STRIPCHOP" = "yes" ; then if test "$HAVE_STRIPCHOP" = "yes" \
-a "x$with_default_strip_size" != "xno"; then
cat >>confdefs.h <<\_ACEOF cat >>confdefs.h <<\_ACEOF
#define STRIPCHOP_DEFAULT TIFF_STRIPCHOP #define STRIPCHOP_DEFAULT TIFF_STRIPCHOP
_ACEOF _ACEOF
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" with_default_strip_size="8192"
fi fi

View File

@ -451,10 +451,12 @@ AC_ARG_WITH(default-strip-size,
AS_HELP_STRING([--with-default-strip-size=SIZE], AS_HELP_STRING([--with-default-strip-size=SIZE],
[default size of the strip in bytes (when strip chopping enabled) [[default=8192]]]),,) [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)]) 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" with_default_strip_size="8192"
fi fi