123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- config BR2_PACKAGE_QTOPIA4
- bool "qtopia4"
- default n
- select BR2_INSTALL_LIBSTDCPP
- select BR2_PTHREADS_NATIVE
- help
- Qtopia core 4.
- http://www.trolltech.com/
- config BR2_PACKAGE_QTOPIA4_DEBUG
- bool "Compile with debug support"
- default n
- depends BR2_PACKAGE_QTOPIA4
- help
- choice
- prompt "Library type"
- default BR2_PACKAGE_QTOPIA4_SHARED
- depends BR2_PACKAGE_QTOPIA4
- help
- Selects the library type: Shared or Static
- config BR2_PACKAGE_QTOPIA4_SHARED
- bool "Shared library"
- config BR2_PACKAGE_QTOPIA4_STATIC
- bool "Static Library"
- endchoice
- choice
- prompt "Qtopia 4 Core license type"
- default BR2_PACKAGE_QTOPIA4_LICENSE_TYPE_GPL
- depends BR2_PACKAGE_QTOPIA4
- help
- Selects the type of license you which to use for Qtopia 4 Core.
- config BR2_PACKAGE_QTOPIA4_LICENSE_TYPE_GPL
- bool "GPL license"
- config BR2_PACKAGE_QTOPIA4_LICENSE_TYPE_COMMERCIAL
- bool "Commercial license"
- endchoice
- config BR2_PACKAGE_QTOPIA4_GPL_LICENSE_APPROVED
- bool "Approve Qtopia Core 4 GPL licence"
- default n
- depends BR2_PACKAGE_QTOPIA4 && BR2_PACKAGE_QTOPIA4_LICENSE_TYPE_GPL
- help
- Select this if you approve the GNU GENERAL PUBLIC LICENSE Version 2
- on the Qtopia Core 4 library. By doing this you will not be asked
- while the library is compiled. Please read and understand the GPL
- licence before approving this.
- For full GPL version 2 see http://www.gnu.org/licenses/gpl.txt
- config BR2_PACKAGE_QTOPIA4_COMMERCIAL_USERNAME
- string "Qtopia Core 4 Commercial License Username"
- default ""
- depends BR2_PACKAGE_QTOPIA4 && BR2_PACKAGE_QTOPIA4_LICENSE_TYPE_COMMERCIAL
- help
- Commercial users can download their source directly by providing a username.
- config BR2_PACKAGE_QTOPIA4_COMMERCIAL_PASSWORD
- string "Qtopia Core 4 Commercial License Password"
- default ""
- depends BR2_PACKAGE_QTOPIA4 && BR2_PACKAGE_QTOPIA4_LICENSE_TYPE_COMMERCIAL
- help
- Commercial users can download their source directly by providing a password.
- config BR2_PACKAGE_QTOPIA4_QT3SUPPORT
- bool "Compatibility with Qt3"
- default y
- depends BR2_PACKAGE_QTOPIA4
- help
- Turns on support for older Qt3.
- config BR2_PACKAGE_QTOPIA4_DEPTHS
- string "color depths to support"
- default "-depths 8"
- depends BR2_PACKAGE_QTOPIA4
- help
- Which color depths to support for the library. Default is "-depths
- 8". Is specified by a comma separated list, i.e. -depths 24,16,8.
- config BR2_PACKAGE_QTOPIA4_GIF
- bool "Enable GIF support"
- default n
- depends BR2_PACKAGE_QTOPIA4
- help
- This compiles and installs the plugin for GIF reading support.
- config BR2_PACKAGE_QTOPIA4_LIBMNG
- bool "Enable libmng support"
- default n
- select BR2_PACKAGE_LIBPNG
- depends BR2_PACKAGE_QTOPIA4
- help
- This compiles and installs the plugin for MNG support.
- choice
- prompt "libjpeg support"
- depends BR2_PACKAGE_QTOPIA4
- default BR2_PACKAGE_QTOPIA4_NOJPEG
- help
- Select libjpeg support.
- config BR2_PACKAGE_QTOPIA4_NOJPEG
- bool
- prompt "No jpeg support"
- help
- Disable JPEG support
- config BR2_PACKAGE_QTOPIA4_SYSTEMJPEG
- bool
- select BR2_PACKAGE_JPEG
- prompt "use system libjpeg"
- help
- Link against system libjpeg
- config BR2_PACKAGE_QTOPIA4_QTJPEG
- bool
- prompt "use qt libjpeg"
- help
- Link against libjpeg proveded with Qt
- endchoice
- choice
- prompt "zlib support"
- depends BR2_PACKAGE_QTOPIA4
- default BR2_PACKAGE_QTOPIA4_QTZLIB
- help
- Select zlib support.
- config BR2_PACKAGE_QTOPIA4_NOZLIB
- bool
- prompt "no zlib"
- help
- Use the zlib bundled with Qt.
- config BR2_PACKAGE_QTOPIA4_QTZLIB
- bool
- prompt "Qt zlib"
- help
- Use the zlib bundled with Qt.
-
- config BR2_PACKAGE_QTOPIA4_SYSTEMZLIB
- bool
- select BR2_PACKAGE_ZLIB
- prompt "System zlib"
- help
- Use the shared zlib from the system.
- endchoice
-
- config BR2_PACKAGE_QTOPIA4_EMB_PLATFORM
- string "The embedded platform we are making Qtopia4 for"
- default "arm" if BR2_arm
- default "arm" if BR2_armeb
- default "avr32" if BR2_avr32
- default "x86" if BR2_i386
- default "x86_64" if BR2_x86_64
- default "mips" if BR2_mips
- default "mips" if BR2_mipsel
- # Not that I really believe these will work..
- default "generic" if BR2_alpha
- default "generic" if BR2_chris
- default "generic" if BR2_m68k
- default "generic" if BR2_nios2
- default "generic" if BR2_powerpc
- default "generic" if BR2_sh
- default "generic" if BR2_sh64
- default "generic" if BR2_sparc
- depends BR2_PACKAGE_QTOPIA4
- help
- The platform.
|