1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-15 23:35:34 +00:00

- lzma disabled by default.

This commit is contained in:
Witold Filipczyk 2009-02-22 13:58:55 +01:00 committed by Witold Filipczyk
parent b81821a21c
commit 56b7d38a28
2 changed files with 7 additions and 2 deletions

1
NEWS
View File

@ -101,6 +101,7 @@ Other changes:
* minor bug 761: When reading bookmarks from an XBEL file, distinguish
attribute names from attribute values.
* enhancement: Updated ISO 8859-7, ISO 8859-16, KOI8-R, and MacRoman.
* lzma disabled by default. It's rarely used and doesn't build with new xz.
Bugs that should be removed from NEWS before the 0.12.0 release:

View File

@ -465,8 +465,12 @@ if test "x{with_gc}" != xno; then
[ --with-gc enable Boehm's garbage collector])
fi
EL_CONFIG_OPTIONAL_LIBRARY(CONFIG_LZMA, lzma, lzma.h, lzma, lzma_code,
[ --without-lzma disable lzma encoding support])
# LZMA disabled by default, because of little usability and compilation problems
# with new xz
AC_ARG_WITH(lzma, [ --with-lzma enable lzma encoding support],
[ if test "x$withval" != xno; then
EL_CONFIG_OPTIONAL_LIBRARY(CONFIG_LZMA, lzma, lzma.h, lzma, lzma_code, [])
fi ])
# ===================================================================
# Check for GSSAPI, optional even if installed.