mirror of
git://sourceware.org/git/libabigail.git
synced 2024-12-16 15:04:46 +00:00
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:
parent
63c5916269
commit
5b07d709ab
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user