2
1

Config.in 609 B

12345678910111213141516171819202122232425262728
  1. config BR2_PACKAGE_FREETYPE
  2. bool "freetype"
  3. select BR2_PACKAGE_PKGCONFIG
  4. help
  5. a free, high-quality and portable font engine.
  6. http://www.freetype.org/
  7. choice
  8. prompt "Freetype Version"
  9. depends on BR2_PACKAGE_FREETYPE
  10. default BR2_FREETYPE_VERSION_2_3_7
  11. help
  12. Select the version of Freetype you wish to use.
  13. config BR2_FREETYPE_VERSION_2_2_1
  14. bool "Freetype 2.2.1"
  15. depends on BR2_DEPRECATED
  16. config BR2_FREETYPE_VERSION_2_3_7
  17. bool "Freetype 2.3.7"
  18. endchoice
  19. config BR2_FREETYPE_VERSION
  20. string
  21. default "2.2.1" if BR2_FREETYPE_VERSION_2_2_1
  22. default "2.3.7" if BR2_FREETYPE_VERSION_2_3_7