Config.in 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. config BR2_PACKAGE_QTOPIA4
  2. bool "qtopia4"
  3. default n
  4. select BR2_INSTALL_LIBSTDCPP
  5. select BR2_PTHREADS_NATIVE
  6. help
  7. Qtopia core 4.
  8. http://www.trolltech.com/
  9. config BR2_PACKAGE_QTOPIA4_DEBUG
  10. bool "Compile with debug support"
  11. default n
  12. depends BR2_PACKAGE_QTOPIA4
  13. help
  14. choice
  15. prompt "Library type"
  16. default BR2_PACKAGE_QTOPIA4_SHARED
  17. depends BR2_PACKAGE_QTOPIA4
  18. help
  19. Selects the library type: Shared or Static
  20. config BR2_PACKAGE_QTOPIA4_SHARED
  21. bool "Shared library"
  22. config BR2_PACKAGE_QTOPIA4_STATIC
  23. bool "Static Library"
  24. endchoice
  25. choice
  26. prompt "Qtopia 4 Core license type"
  27. default BR2_PACKAGE_QTOPIA4_LICENSE_TYPE_GPL
  28. depends BR2_PACKAGE_QTOPIA4
  29. help
  30. Selects the type of license you which to use for Qtopia 4 Core.
  31. config BR2_PACKAGE_QTOPIA4_LICENSE_TYPE_GPL
  32. bool "GPL license"
  33. config BR2_PACKAGE_QTOPIA4_LICENSE_TYPE_COMMERCIAL
  34. bool "Commercial license"
  35. endchoice
  36. config BR2_PACKAGE_QTOPIA4_GPL_LICENSE_APPROVED
  37. bool "Approve Qtopia Core 4 GPL licence"
  38. default n
  39. depends BR2_PACKAGE_QTOPIA4 && BR2_PACKAGE_QTOPIA4_LICENSE_TYPE_GPL
  40. help
  41. Select this if you approve the GNU GENERAL PUBLIC LICENSE Version 2
  42. on the Qtopia Core 4 library. By doing this you will not be asked
  43. while the library is compiled. Please read and understand the GPL
  44. licence before approving this.
  45. For full GPL version 2 see http://www.gnu.org/licenses/gpl.txt
  46. config BR2_PACKAGE_QTOPIA4_COMMERCIAL_USERNAME
  47. string "Qtopia Core 4 Commercial License Username"
  48. default ""
  49. depends BR2_PACKAGE_QTOPIA4 && BR2_PACKAGE_QTOPIA4_LICENSE_TYPE_COMMERCIAL
  50. help
  51. Commercial users can download their source directly by providing a username.
  52. config BR2_PACKAGE_QTOPIA4_COMMERCIAL_PASSWORD
  53. string "Qtopia Core 4 Commercial License Password"
  54. default ""
  55. depends BR2_PACKAGE_QTOPIA4 && BR2_PACKAGE_QTOPIA4_LICENSE_TYPE_COMMERCIAL
  56. help
  57. Commercial users can download their source directly by providing a password.
  58. config BR2_PACKAGE_QTOPIA4_QT3SUPPORT
  59. bool "Compatibility with Qt3"
  60. default y
  61. depends BR2_PACKAGE_QTOPIA4
  62. help
  63. Turns on support for older Qt3.
  64. config BR2_PACKAGE_QTOPIA4_DEPTHS
  65. string "color depths to support"
  66. default "-depths 8"
  67. depends BR2_PACKAGE_QTOPIA4
  68. help
  69. Which color depths to support for the library. Default is "-depths
  70. 8". Is specified by a comma separated list, i.e. -depths 24,16,8.
  71. config BR2_PACKAGE_QTOPIA4_GIF
  72. bool "Enable GIF support"
  73. default n
  74. depends BR2_PACKAGE_QTOPIA4
  75. help
  76. This compiles and installs the plugin for GIF reading support.
  77. config BR2_PACKAGE_QTOPIA4_LIBMNG
  78. bool "Enable libmng support"
  79. default n
  80. select BR2_PACKAGE_LIBPNG
  81. depends BR2_PACKAGE_QTOPIA4
  82. help
  83. This compiles and installs the plugin for MNG support.
  84. choice
  85. prompt "libjpeg support"
  86. depends BR2_PACKAGE_QTOPIA4
  87. default BR2_PACKAGE_QTOPIA4_NOJPEG
  88. help
  89. Select libjpeg support.
  90. config BR2_PACKAGE_QTOPIA4_NOJPEG
  91. bool
  92. prompt "No jpeg support"
  93. help
  94. Disable JPEG support
  95. config BR2_PACKAGE_QTOPIA4_SYSTEMJPEG
  96. bool
  97. select BR2_PACKAGE_JPEG
  98. prompt "use system libjpeg"
  99. help
  100. Link against system libjpeg
  101. config BR2_PACKAGE_QTOPIA4_QTJPEG
  102. bool
  103. prompt "use qt libjpeg"
  104. help
  105. Link against libjpeg proveded with Qt
  106. endchoice
  107. choice
  108. prompt "zlib support"
  109. depends BR2_PACKAGE_QTOPIA4
  110. default BR2_PACKAGE_QTOPIA4_QTZLIB
  111. help
  112. Select zlib support.
  113. config BR2_PACKAGE_QTOPIA4_NOZLIB
  114. bool
  115. prompt "no zlib"
  116. help
  117. Use the zlib bundled with Qt.
  118. config BR2_PACKAGE_QTOPIA4_QTZLIB
  119. bool
  120. prompt "Qt zlib"
  121. help
  122. Use the zlib bundled with Qt.
  123. config BR2_PACKAGE_QTOPIA4_SYSTEMZLIB
  124. bool
  125. select BR2_PACKAGE_ZLIB
  126. prompt "System zlib"
  127. help
  128. Use the shared zlib from the system.
  129. endchoice
  130. config BR2_PACKAGE_QTOPIA4_EMB_PLATFORM
  131. string "The embedded platform we are making Qtopia4 for"
  132. default "arm" if BR2_arm
  133. default "arm" if BR2_armeb
  134. default "avr32" if BR2_avr32
  135. default "x86" if BR2_i386
  136. default "x86_64" if BR2_x86_64
  137. default "mips" if BR2_mips
  138. default "mips" if BR2_mipsel
  139. # Not that I really believe these will work..
  140. default "generic" if BR2_alpha
  141. default "generic" if BR2_chris
  142. default "generic" if BR2_m68k
  143. default "generic" if BR2_nios2
  144. default "generic" if BR2_powerpc
  145. default "generic" if BR2_sh
  146. default "generic" if BR2_sh64
  147. default "generic" if BR2_sparc
  148. depends BR2_PACKAGE_QTOPIA4
  149. help
  150. The platform.