From 5b07d709ab58342d664263706b17cd0d3887e457 Mon Sep 17 00:00:00 2001 From: Dodji Seketeli Date: Tue, 23 Jun 2015 12:21:30 +0200 Subject: [PATCH] Do not build zip archive support by default Until now, the zip archive support was automatically built if the libzip dependent library was installed on the system at configure time. As we are planning to remove the zip support, let's first disable the support by default, even if libzip is installed at configure time. * configure.ac: By default, unconditionally disable the zip-archive support. Signed-off-by: Dodji Seketeli --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 633da9bb..33e8d2c0 100644 --- a/configure.ac +++ b/configure.ac @@ -29,9 +29,9 @@ AC_SUBST(VERSION_REVISION) AC_ARG_ENABLE(zip-archive, AS_HELP_STRING([--enable-zip-archive=yes|no|auto], - [enable bundling of TUs in zip archives (default is auto)]), + [enable bundling of TUs in zip archives (default is no)]), ENABLE_ZIP_ARCHIVE=$enableval, - ENABLE_ZIP_ARCHIVE=auto) + ENABLE_ZIP_ARCHIVE=no) AC_ARG_ENABLE(cxx11,