[vlc-commits] configure: remove minizip check not referenced anywhere
Steve Lhomme
git at videolan.org
Thu Apr 12 13:24:43 CEST 2018
vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Thu Apr 12 13:24:38 2018 +0200| [d22de99eb8c46786ca2feb4abca2e4f25ceeb0a8] | committer: Steve Lhomme
configure: remove minizip check not referenced anywhere
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d22de99eb8c46786ca2feb4abca2e4f25ceeb0a8
---
configure.ac | 11 +----------
1 file changed, 1 insertion(+), 10 deletions(-)
diff --git a/configure.ac b/configure.ac
index 93d1eace42..ea06dce0b6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -879,23 +879,14 @@ AS_IF([test -n "${PKG_CONFIG}" ],[
dnl
-dnl Check for zlib.h and -lz along with system -lminizip if available
+dnl Check for zlib.h and -lz if available
dnl
AC_CHECK_HEADERS(zlib.h, [ have_zlib=yes ], [ have_zlib=no ])
AM_CONDITIONAL(HAVE_ZLIB, [ test "${have_zlib}" = "yes" ])
if test "${have_zlib}" = "yes"
then
VLC_ADD_LIBS([sap],[-lz])
- PKG_CHECK_MODULES([MINIZIP], [minizip] , [ have_minizip=yes ], [
- AC_CHECK_HEADERS([unzip.h], [
- have_minizip=yes
- MINIZIP_LIBS="-lminizip -lz"
- ], [
- have_minizip=no
- ])
- ])
fi
-AM_CONDITIONAL(HAVE_MINIZIP, [ test "${have_minizip}" = "yes" ])
dnl
More information about the vlc-commits
mailing list