###############################################################################
comment "Legacy options removed in 2016.02"
+config BR2_PACKAGE_DOVECOT_BZIP2
+ bool "bzip2 support option has been removed"
+ select BR2_LEGACY
+ select BR2_PACKAGE_BZIP2
+ help
+ Bzip2 support is built if the bzip2 package is selected.
+
+config BR2_PACKAGE_DOVECOT_ZLIB
+ bool "zlib support option has been removed"
+ select BR2_LEGACY
+ select BR2_PACKAGE_ZLIB
+ help
+ Zlib support is built if the zlib package is selected.
+
config BR2_PACKAGE_E2FSPROGS_FINDFS
bool "e2fsprogs findfs option has been removed"
select BR2_LEGACY
if BR2_PACKAGE_DOVECOT
-config BR2_PACKAGE_DOVECOT_BZIP2
- bool "bzip2 support"
- select BR2_PACKAGE_BZIP2
- help
- Enable bzip2 support.
-
config BR2_PACKAGE_DOVECOT_MYSQL
bool "mysql support"
select BR2_PACKAGE_MYSQL
help
Enable SQLite support.
-config BR2_PACKAGE_DOVECOT_ZLIB
- bool "zlib support"
- select BR2_PACKAGE_ZLIB
- help
- Enable zlib support.
-
source package/dovecot-pigeonhole/Config.in
endif # BR2_PACKAGE_DOVECOT
DOVECOT_CONF_OPTS += --without-sql
endif
-ifeq ($(BR2_PACKAGE_DOVECOT_BZIP2),y)
+ifeq ($(BR2_PACKAGE_BZIP2),y)
DOVECOT_CONF_OPTS += --with-bzlib
DOVECOT_DEPENDENCIES += bzip2
else
DOVECOT_CONF_OPTS += --without-sqlite
endif
-ifeq ($(BR2_PACKAGE_DOVECOT_ZLIB),y)
+ifeq ($(BR2_PACKAGE_ZLIB),y)
DOVECOT_CONF_OPTS += --with-zlib
DOVECOT_DEPENDENCIES += zlib
else