4d68651f2c
Options have been prefixed by MZ_ since version 2.8.3 and
cdedc087e7
This will fix a build failure with php due to the compat headers being
enabled
Fixes:
- http://autobuild.buildroot.org/results/fee97d1879b5ea2d9630b2ae629f12b0e202a50e
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
42 lines
1.0 KiB
Makefile
42 lines
1.0 KiB
Makefile
################################################################################
|
|
#
|
|
# minizip
|
|
#
|
|
################################################################################
|
|
|
|
MINIZIP_VERSION = 2.9.0
|
|
MINIZIP_SITE = $(call github,nmoinvaz,minizip,$(MINIZIP_VERSION))
|
|
MINIZIP_DEPENDENCIES = \
|
|
host-pkgconf \
|
|
$(if $(BR2_PACKAGE_LIBBSD),libbsd) \
|
|
$(if $(BR2_PACKAGE_LIBICONV),libiconv)
|
|
MINIZIP_INSTALL_STAGING = YES
|
|
MINIZIP_CONF_OPTS = \
|
|
$(if $(BR2_PACKAGE_MINIZIP_DEMOS),-DMZ_BUILD_TEST=ON) \
|
|
-DMZ_COMPAT=OFF
|
|
MINIZIP_LICENSE = Zlib
|
|
MINIZIP_LICENSE_FILES = LICENSE
|
|
|
|
ifeq ($(BR2_PACKAGE_BZIP2),y)
|
|
MINIZIP_DEPENDENCIES += bzip2
|
|
MINIZIP_CONF_OPTS += -DMZ_BZIP2=ON
|
|
else
|
|
MINIZIP_CONF_OPTS += -DMZ_BZIP2=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
MINIZIP_DEPENDENCIES += openssl
|
|
MINIZIP_CONF_OPTS += -DMZ_OPENSSL=ON
|
|
else
|
|
MINIZIP_CONF_OPTS += -DMZ_OPENSSL=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
|
MINIZIP_DEPENDENCIES += zlib
|
|
MINIZIP_CONF_OPTS += -DMZ_ZLIB=ON
|
|
else
|
|
MINIZIP_CONF_OPTS += -DMZ_ZLIB=OFF
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|