diff options
author | Jeff Muizelaar <jeff@infidigm.net> | 2006-09-06 23:54:30 +0000 |
---|---|---|
committer | Jeff Muizelaar <jeff@infidigm.net> | 2006-09-06 23:54:30 +0000 |
commit | 3ea0aada0434c9f815814253dd9d1374ae6643cc (patch) | |
tree | 577df0199e60423bbd2420b9ac56926945d20f77 /configure.ac | |
parent | 1d2e6aedca0b8fcce6ac84ae2576ab067912886b (diff) |
2006-09-06 Jeff Muizelaar <jeff@infidigm.net>
* configure.ac:
* poppler/FlateStream.cc:
* poppler/FlateStream.h: Fix FlateStream to not read more than it
needs. This has a performance impact because our input buffer is now
only 1 byte large, however correctness is better than performance.
This should fix #3948.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index c57daeed..de197b70 100644 --- a/configure.ac +++ b/configure.ac @@ -82,7 +82,7 @@ fi dnl Test for zlib AC_ARG_ENABLE(zlib, AC_HELP_STRING([--disable-zlib], - [Don't build against zlib. This is the default value as the zlib code is known to fail in some cases.]), + [Don't build against zlib.]), enable_zlib=$enableval, enable_zlib="no") if test x$enable_zlib = xyes; then |