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 <dodji@redhat.com>
This commit is contained in:
Dodji Seketeli 2015-06-23 12:21:30 +02:00
parent 63c5916269
commit 5b07d709ab
1 changed files with 2 additions and 2 deletions

View File

@ -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,