summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfwarmerdam <fwarmerdam>2011-02-18 22:28:58 +0000
committerfwarmerdam <fwarmerdam>2011-02-18 22:28:58 +0000
commit6ae4adbbb47be62e4be9af9443f39695a6ce7795 (patch)
tree5cd5351dfeb339af1a21301d51ffe3637f258a21
parentf6cea0de83d07fe849e9f6c6e7cd9ced7db54f3e (diff)
downloadlibtiff-6ae4adbbb47be62e4be9af9443f39695a6ce7795.tar.gz
fix macro set for chunky-read-support
-rwxr-xr-xconfigure2
-rw-r--r--configure.ac2
-rw-r--r--libtiff/tif_config.h.in2
3 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index 2b589c82..449da6de 100755
--- a/configure
+++ b/configure
@@ -19712,7 +19712,7 @@ fi
if test "$HAVE_CHUNKY_STRIP_READ" = "yes" ; then
-$as_echo "#define CHUNKY_STRIP_READ 1" >>confdefs.h
+$as_echo "#define CHUNKY_STRIP_READ_SUPPORT 1" >>confdefs.h
fi
diff --git a/configure.ac b/configure.ac
index d39aa377..c8140868 100644
--- a/configure.ac
+++ b/configure.ac
@@ -866,7 +866,7 @@ AC_ARG_ENABLE(chunky-strip-read,
[HAVE_CHUNKY_STRIP_READ=$enableval], [HAVE_CHUNKY_STRIP_READ=no])
if test "$HAVE_CHUNKY_STRIP_READ" = "yes" ; then
- AC_DEFINE(CHUNKY_STRIP_READ,1,[enable partial strip reading for large strips (experimental)])
+ AC_DEFINE(CHUNKY_STRIP_READ_SUPPORT,1,[enable partial strip reading for large strips (experimental)])
fi
diff --git a/libtiff/tif_config.h.in b/libtiff/tif_config.h.in
index d13ece67..dfd6e38a 100644
--- a/libtiff/tif_config.h.in
+++ b/libtiff/tif_config.h.in
@@ -11,7 +11,7 @@
#undef CHECK_JPEG_YCBCR_SUBSAMPLING
/* enable partial strip reading for large strips (experimental) */
-#undef CHUNKY_STRIP_READ
+#undef CHUNKY_STRIP_READ_SUPPORT
/* Support C++ stream API (requires C++ compiler) */
#undef CXX_SUPPORT