Config.in 511 B

1234567891011121314151617181920212223242526
  1. config BR2_PACKAGE_FREETYPE
  2. bool "freetype"
  3. default n
  4. help
  5. http://www.freetype.org/
  6. choice
  7. prompt "Freetype Version"
  8. depends BR2_PACKAGE_FREETYPE
  9. default BR2_FREETYPE_VERSION_2_2_1
  10. help
  11. Select the version of Freetype you wish to use.
  12. config BR2_FREETYPE_VERSION_2_2_1
  13. bool "Freetype 2.2.1"
  14. config BR2_FREETYPE_VERSION_2_3_5
  15. bool "Freetype 2.3.5"
  16. endchoice
  17. config BR2_FREETYPE_VERSION
  18. string
  19. default "2.2.1" if BR2_FREETYPE_VERSION_2_2_1
  20. default "2.3.5" if BR2_FREETYPE_VERSION_2_3_5