aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2008-12-31 17:44:20 +0200
committerLasse Collin <lasse.collin@tukaani.org>2008-12-31 17:44:20 +0200
commit9c45658ddc8bd4a7819ef8547d3e7ccf73203e78 (patch)
treeaacff0d9aae34c5e41a66fa69bc918bfe5683f46
parentUpdate some files in debug directory. (diff)
downloadxz-9c45658ddc8bd4a7819ef8547d3e7ccf73203e78.tar.xz
Disable both Subblock encoder and decoder my default,
since they are not finished and may have security issues too.
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index a9edcb00..eee54259 100644
--- a/configure.ac
+++ b/configure.ac
@@ -142,7 +142,7 @@ AC_ARG_ENABLE([decoders], AC_HELP_STRING([--enable-decoders=LIST],
[Comma-separated list of decoders to build. Default=all.
Available decoders are the same as available encoders.]),
[], [enable_decoders=SUPPORTED_FILTERS])
-enable_decoders=`echo "$enable_decoders" | sed 's/,/ /g'`
+enable_decoders=`echo "$enable_decoders" | sed 's/,subblock//; s/,/ /g'`
if test "x$enable_decoders" = xno || test "x$enable_decoders" = x; then
AC_MSG_RESULT([(none)])
else