summaryrefslogtreecommitdiff
path: root/package/lzma
diff options
context:
space:
mode:
authorThomas De Schampheleire <patrickdepinguin@gmail.com>2014-01-03 17:02:50 +0100
committerPeter Korsgaard <peter@korsgaard.com>2014-01-10 15:03:53 +0100
commitba4ad9d27c4ddf9f2d1368a978f622bd66850e72 (patch)
tree3b6686b7b17e87947adf00291dd19930667c6196 /package/lzma
parentb4a28e6c5cb4c74649990f5256cf0f7971c1abec (diff)
deprecated handling: introduce BR2_DEPRECATED_SINCE_xxxx_xx
In order to keep better track of when a feature got deprecated, and hence when it can be removed, a new set of symbols BR2_DEPRECATED_SINCE_xxxx_xx is introduced. These symbols are automatically selected when BR2_DEPRECATED is selected, and thus are transparent to the user. A deprecated feature will no longer depend on BR2_DEPRECATED directly, but rather on the appropriate BR2_DEPRECATED_SINCE_xxxx_xx. If that symbol does not yet exist, it has to be created in Config.in. When removing a deprecated feature, one should also check whether this was the last feature using the BR2_DEPRECATED_SINCE_xxxx_xx symbol, in which case the latter can be removed from Config.in. A followup patch will make sure the overview is added to the list of deprecated features in the manual, so that a buildroot core developer can easily determine which features to remove in a given development cycle. Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/lzma')
-rw-r--r--package/lzma/Config.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/lzma/Config.in b/package/lzma/Config.in
index 5a55103c5..d7e882798 100644
--- a/package/lzma/Config.in
+++ b/package/lzma/Config.in
@@ -1,7 +1,7 @@
config BR2_PACKAGE_LZMA
bool "lzma"
depends on BR2_INSTALL_LIBSTDCPP
- depends on BR2_DEPRECATED
+ depends on BR2_DEPRECATED_SINCE_2010_11
help
Lempel Ziv compression method (LZMA) is a compression
algorithm with high compression ratio.
@@ -9,5 +9,5 @@ config BR2_PACKAGE_LZMA
http://tukaani.org/lzma/
comment "lzma needs a toolchain w/ C++"
- depends on BR2_DEPRECATED
+ depends on BR2_DEPRECATED_SINCE_2010_11
depends on !BR2_INSTALL_LIBSTDCPP