summaryrefslogtreecommitdiffstats
path: root/rules/qt4.in
blob: c504f842c3ec1c6dd66f4f5145073d8c007f48eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
## SECTION=qt

menuconfig QT4
	tristate
	select LIBC_PTHREAD
	select LIBC_DL
	select LIBC_RT
	select LIBC_M
	select GCCLIBS_CXX
	select GCCLIBS_GCC_S
	select HOST_QT4
	select TSLIB		if QT4_MOUSE_TSLIB
	select DBUS		if QT4_DBUS
	select HOST_QT4_DBUS	if QT4_DBUS
	select GLIB		if QT4_GLIB
	select ZLIB		if QT4_ZLIB_SYSTEM
	select FREETYPE		if QT4_FREETYPE_SYSTEM
	select LIBPNG		if QT4_PNG_SYSTEM
	select LIBJPEG		if QT4_JPG_SYSTEM
	select SQLITE		if QT4_SQLITE_SYSTEM
	select GSTREAMER	if QT4_BUILD_PHONON
	select GST_PLUGINS_BASE	if QT4_BUILD_PHONON
	select OPENSSL		if QT4_OPENSSL
	select MESALIB		if QT4_OPENGL_DESKTOP
	select ALSA_LIB		if QT4_BUILD_MULTIMEDIA
# libsvga is currently not in ptxdist
#	select LIBSVGA		if QT4_GFX_SVGA_PLUGIN

	select XORG_LIB_X11		if QT4_PLATFORM_X11
	select XORG_LIB_SM		if QT4_X11_SM
	select XORGPROTO		if QT4_PLATFORM_X11
	select XORG_LIB_XINERAMA	if QT4_X11_XINERAMA
	select XORG_LIB_XCURSOR		if QT4_X11_XCURSOR
	select XORG_LIB_XFIXES		if QT4_X11_XFIXES
	select XORG_LIB_XRANDR		if QT4_X11_XRANDR
	select XORG_LIB_XRENDER		if QT4_X11_XRENDER
	select FONTCONFIG		if QT4_X11_FONTCONFIG
	select FREETYPE			if QT4_X11_FONTCONFIG
	select XORG_LIB_XI		if QT4_X11_XINPUT
	select XORG_LIB_XKBUI		if QT4_X11_XKB

	prompt "qt                            "
	help
	  Qt is Nokia's Widget Library for Linux.

if QT4

menu "build options               "

config QT4_SHARED
	bool
	default y
	prompt "build shared libraries"
	help
	  If selected the shared Qt Libraries are built
	  and installed.

choice
	prompt "platform            "
	default QT4_PLATFORM_EMBEDDED

	config QT4_PLATFORM_EMBEDDED
		bool
		prompt "embedded"
		help
		  Build Qt for embedded

	config QT4_PLATFORM_X11
		bool
		prompt "X11     "
		help
		  Build Qt for X11
endchoice

endmenu

if QT4_PLATFORM_EMBEDDED

menu "graphics driver             "

choice
	prompt "ahi                 "
	default QT4_GFX_AHI_NULL
	help
	  FIXME

	config QT4_GFX_AHI_NULL
		bool
		prompt "none   "
		help
		  Don't build the driver

# only as plugin

	config QT4_GFX_AHI_PLUGIN
		bool
		prompt "plugin "
		depends on BROKEN
		help
		  Load the driver at runtime
endchoice

choice
	prompt "eglnullws           "
	default QT4_GFX_EGLNULLWS_NULL
	help
	  Accelerated driver using eglnullws

	config QT4_GFX_EGLNULLWS_NULL
		bool
		prompt "none   "
		help
		  Don't build the driver

# only as plugin

	config QT4_GFX_EGLNULLWS_PLUGIN
		bool
		depends on QT4_BUILD_OPENGL
		prompt "plugin "
		help
		  Load the driver at runtime
endchoice

choice
	prompt "LinuxFb             "
	default QT4_GFX_LINUXFB_NONE
	help
	  Unaccelerated linux frambuffer driver

	config QT4_GFX_LINUXFB_NONE
		bool
		prompt "none   "
		help
		  Don't build the driver

	config QT4_GFX_LINUXFB_BUILTIN
		bool
		prompt "builtin"
		help
		  Link the driver into QtGui

	config QT4_GFX_LINUXFB_PLUGIN
		bool
		prompt "plugin "
		help
		  Load the driver at runtime
endchoice

choice
	prompt "PowerVR             "
	default QT4_GFX_POWERVR_NULL
	help
	  FIXME

	config QT4_GFX_POWERVR_NULL
		bool
		prompt "none   "
		help
		  Don't build the driver

# only as plugin

	config QT4_GFX_POWERVR_PLUGIN
		bool
		prompt "plugin "
		help
		  Load the driver at runtime
endchoice

choice
	prompt "Qt Virtual Fb       "
	default QT4_GFX_QVFB_NONE
	help
	  The Qt Virtual Framebuffer can be used to test Qt Embedded applications.
	  It must be used in combination with the QVFb tool which is part of Qt/X11

	config QT4_GFX_QVFB_NONE
		bool
		prompt "none   "
		help
		  Don't build the driver

	config QT4_GFX_QVFB_BUILTIN
		bool
		prompt "builtin"
		help
		  Link the driver into QtGui

	config QT4_GFX_QVFB_PLUGIN
		bool
		prompt "plugin "
		help
		  Load the driver at runtime
endchoice

choice
	prompt "SVGA                "
	depends on BROKEN
	default QT4_GFX_SVGA_NONE
	help
	  Unaccelerated driver using svgalib.


	config QT4_GFX_SVGA_NONE
		bool
		prompt "none   "
		help
		  Don't build the driver

# only as plugin

	config QT4_GFX_SVGA_PLUGIN
		bool
		prompt "plugin "
		depends on BROKEN
		help
		  Load the driver at runtime
endchoice

choice
	prompt "VNC                 "
	default QT4_GFX_VNC_NONE
	help
	  The VNC driver provides a VNC server. It can also be used in
	  combination with other drivers.


	config QT4_GFX_VNC_NONE
		bool
		prompt "none   "
		help
		  Don't build the driver

	config QT4_GFX_VNC_BUILTIN
		bool
		prompt "builtin"
		help
		  Link the driver into QtGui

	config QT4_GFX_VNC_PLUGIN
		bool
		prompt "plugin "
		help
		  Load the driver at runtime
endchoice

choice
	prompt "Transformed         "
	default QT4_GFX_TRANSFORMED_NONE
	help
	  Transformed is a meta driver that delegates the drawing to another driver
	  after rotating the contents


	config QT4_GFX_TRANSFORMED_NONE
		bool
		prompt "none   "
		help
		  Don't build the driver

	config QT4_GFX_TRANSFORMED_BUILTIN
		bool
		prompt "builtin"
		help
		  Link the driver into QtGui

	config QT4_GFX_TRANSFORMED_PLUGIN
		bool
		prompt "plugin "
		help
		  Load the driver at runtime
endchoice

choice
	prompt "Multi               "
	default QT4_GFX_MULTISCREEN_NONE
	help
	  Multi is a meta driver that delegates the drawing to multiple other
	  drivers.

	config QT4_GFX_MULTISCREEN_NONE
		bool
		prompt "none   "
		help
		  Don't build the driver

	config QT4_GFX_MULTISCREEN_BUILTIN
		bool
		prompt "builtin"
		help
		  Link the driver into QtGui

# not as plugin
endchoice

choice
	prompt "hybrid              "
	default QT4_GFX_HYBRID_NULL

	config QT4_GFX_HYBRID_NULL
		bool
		prompt "none   "
		help
		  Don't build the driver

# only as plugin

	config QT4_GFX_HYBRID_PLUGIN
		bool
		prompt "plugin [BROKEN]"
		# needs GLES/egl.h and others
		depends on BROKEN
		help
		  Load the driver at runtime
endchoice

endmenu

menu "keyboard drivers            "

config QT4_KBD_TTY
	bool
	prompt "tty"
	help
	  Generic console (tty) driver

config QT4_KBD_INPUT
	bool
	prompt "Linux Input"
	help
	  Generic Linux Input driver

config QT4_KBD_QVFB
	bool
	prompt "Qt Virtual Frambuffer"
	help
	  Keyboard driver for the Qt Virtual Frambuffer

endmenu

menu "mouse drivers               "

config QT4_MOUSE_PC
	bool
	prompt "Generic Mouse Driver"
	help
	  Generic driver for the MouseMan, IntelliMouse, Microsoft and MouseSystems
	  protocols.

config QT4_MOUSE_INPUT
	bool
	prompt "Linux Input"

config QT4_MOUSE_LINUXTP
	bool
	prompt "Linux Touch Panel"

config QT4_MOUSE_TSLIB
	bool
	prompt "Tslib"
	help
	  Driver for the universal touch screen library, tslib.

config QT4_MOUSE_QVFB
	bool
	prompt "Qt Virtual Frambuffer"
	help
	  Mouse driver for the Qt Virtual Frambuffer

endmenu

endif # QT4_PLATFORM_EMBEDDED

if QT4_PLATFORM_X11

menu "X11 feature options         "

config QT4_X11_SM
	bool
	prompt "X Session Management"
	help
	  Support X Session Management, links in -lSM -lICE.

config QT4_X11_XSHAPE
	bool
	prompt "XShape"
	help
	  Compile XShape support. Requires X11/extensions/shape.h.

config QT4_X11_XSYNC
	bool
	prompt "XSync"
	help
	  Compile XSync support. Requires X11/extensions/sync.h.

config QT4_X11_XINERAMA
	bool
	prompt "Xinerama"
	help
	  Compile Xinerama support. Requires X11/extensions/Xinerama.h
	  and libXinerama. By default, Xinerama support will be compiled if
	  available and the shared libraries are dynamically loaded at
	  runtime.

config QT4_X11_XCURSOR
	bool
	prompt "Xcursor"
	help
	  Compile Xcursor support. Requires X11/Xcursor/Xcursor.h and
	  libXcursor. By default, Xcursor support will be compiled if
	  available and the shared libraries are dynamically loaded
	  at runtime.

config QT4_X11_XFIXES
	bool
	prompt "Xfixes"
	help
	  Compile Xfixes support.  Requires X11/extensions/Xfixes.h and
	  libXfixes.  By default, Xfixes support will be compiled if
	  available and the shared libraries are dynamically loaded at
	  runtime.

config QT4_X11_XRANDR
	bool
	prompt "Xrandr"
	help
	  Compile Xrandr support.  Requires X11/extensions/Xrandr.h
	  and libXrandr.

config QT4_X11_XRENDER
	bool
	prompt "Xrender"
	help
	  Compile Xrender support.  Requires X11/extensions/Xrender.h
	  and libXrender.

config QT4_X11_MITSHM
	bool
	prompt "MIT-SHM"
	help
	  Compile MIT-SHM support.  Requires sys/ipc.h, sys/shm.h
	  and X11/extensions/XShm.h

config QT4_X11_FONTCONFIG
	bool
	prompt "FontConfig"
	help
	  Compile FontConfig (anti-aliased font) support. Requires
	  fontconfig/fontconfig.h, libfontconfig, freetype.h and
	  libfreetype.

config QT4_X11_XINPUT
	bool
	prompt "Xinput"
	help
	  ompile Xinput support. This also enabled tablet support
	  which requires IRIX with wacom.h and libXi or XFree86 with
	  X11/extensions/XInput.h and libXi.

config QT4_X11_XKB
	bool
	prompt "XKB"
	help
	  Compile XKB (X KeyBoard extension) support.

endmenu

endif # QT4_PLATFORM_X11

# prepare the build system to build the examples
# selected by QT4_EXAMPLES
config QT4_PREPARE_EXAMPLES
	bool

menu "feature options             "

choice
	prompt "zlib support       "
	default QT4_ZLIB_SYSTEM
	help
	  zlib support is required for at least the PNG graphic format

config QT4_ZLIB_INTERNAL
	bool "internal"
	help
	  This uses the embedded zlib support

config QT4_ZLIB_SYSTEM
	bool "system  "
	help
	  Use system's zlib
endchoice

choice
	prompt "freetype support   "
	default QT4_FREETYPE_SYSTEM
	help
	  Control freetype support

config QT4_FREETYPE_NONE
	bool "none    "
	help
	 This disables freeetype support entirely

config QT4_FREETYPE_INTERNAL
	bool "internal"
	help
	  This uses the embedded freetype support

config QT4_FREETYPE_SYSTEM
	bool "system  "
	help
	  Use system's freetype
endchoice

choice
	prompt "ICO support        "
	default QT4_ICO_NONE
	help
	  Control support for the ICO File Format

config QT4_ICO_NONE
	bool "none    "
	help
	 This disables entirely any ICO support

config QT4_ICO_INTERNAL
	bool "internal"
	help
	  This uses the embedded ICO support
endchoice

choice
	prompt "PNG support        "
	default QT4_PNG_SYSTEM
	help
	  Control support for the Portable Network Graphics format

config QT4_PNG_NONE
	bool "none    "
	help
	 This disables entirely any PNG support

config QT4_PNG_INTERNAL
	bool "internal"
	help
	  This uses the embedded PNG support

config QT4_PNG_SYSTEM
	bool "system  "
	help
	  Use system's PNG library
endchoice

choice
	prompt "MNG support        "
	default QT4_MNG_NONE
	help
	  Control support for the Multiple-image Network Graphics format

config QT4_MNG_NONE
	bool "none    "
	help
	 This disables entirely any MNG support

config QT4_MNG_INTERNAL
	bool "internal"
	help
	  This uses the embedded MNG support

# there is currently no support for MNG in ptxdist
#config QT4_MNG_SYSTEM
#	bool "system  "
#	help
#	  Use system's MNG library

endchoice

choice
	prompt "TIFF support       "
	default QT4_TIFF_NONE
	help
	  Control support for the Tag Image File Format

config QT4_TIFF_NONE
	bool "none    "
	help
	 This disables entirely any TIFF support

config QT4_TIFF_INTERNAL
	bool "internal"
	help
	  This uses the embedded TIFF support

# there is currently no support for TIFF in ptxdist
#config QT4_TIFF_SYSTEM
#	bool "system  "
#	help
#	  Use system's TIFF library

endchoice

choice
	prompt "GIF support        "
	default QT4_GIF_NONE
	help
	  Control support for the "Graphics Interchange Format" format

config QT4_GIF_NONE
	bool "none    "
	help
	 This disables entirely any GIF support

config QT4_GIF_NULL
	# note: NULL == no configure option. There is only -no-gif
	bool "internal"
	help
	  This uses the embedded GIF support

endchoice

choice
	prompt "JPG support        "
	default QT4_JPG_NONE

config QT4_JPG_NONE
	bool "none    "
	help
	 This disables entirely any JPG support

config QT4_JPG_INTERNAL
	bool "internal"
	help
	  This uses the embedded JPG support

config QT4_JPG_SYSTEM
	bool "system  "
	help
	  Use system's JPG library

endchoice

config QT4_STL
	bool
	prompt "stl support"
	help
	  Add Qt support for standard template library.

config QT4_GLIB
	bool
	prompt "glib support"
	help
	  Add Qt support for glib.

config QT4_OPENSSL
	bool
	prompt "openssl support"
	help
	  Add Qt support for openssl.

config QT4_DBUS
	bool
	prompt "dbus support"
	help
	  Build D-Bus bindings for Qt

choice
	prompt "dbus support       "
	depends on QT4_DBUS
	default QT4_DBUS_LOAD
	help
	  Qt dbus support.

config QT4_DBUS_LOAD
	bool "load    "
	select QT4_BUILD_XML
	help
	  Build Qt dbus support and dynamically load libdbus-1.

config QT4_DBUS_LINK
	bool "link    "
	select QT4_BUILD_XML
	help
	  Build Qt dbus support and link to libdbus-1.
endchoice

config QT4_ACCESSIBILITY
	bool
	prompt "accessibility"
	help
	  Compile Accessibility support.

endmenu

config QT4_BUILD_OPENGL
	bool

choice
	prompt "OpenGL support  "
	help
	  Add Qt support for OpenGL

config QT4_OPENGL_NONE
	bool "none     "

config QT4_OPENGL_DESKTOP
	bool "Desktop  "
	depends on QT4_PLATFORM_X11
	select QT4_BUILD_OPENGL

config QT4_OPENGL_ES1
	bool "ES 1.x   "
	select QT4_BUILD_OPENGL

config QT4_OPENGL_ES2
	bool "ES 2.x   "
	select QT4_BUILD_OPENGL

endchoice

config QT4_OPENGL_EGL
	bool "use EGL"
	depends on QT4_BUILD_OPENGL && !QT4_OPENGL_DESKTOP

menu "optional libraries          "

config QT4_BUILD_GUI
	bool
	select QT4_BUILD_NETWORK
	prompt "QtGui"
	help
	  The QtGui module provides the classes necessary for a graphical user interface.

config QT4_BUILD_NETWORK
	bool
	prompt "QtNetwork"
	help
	  The QtNetwork module offers classes that allow you to write TCP/IP
	  clients and servers.

menuconfig QT4_BUILD_SQL
	bool
	prompt "QtSql                         "
	help
	  The QtSql module helps you provide seamless database integration
	  to your Qt applications.
	  The SQL classes are divided into three layers:
	   - Driver Layer:  Provides the low-level bridge between the specific
	                    databases and the SQL API layer.
	   - SQL API Layer: Provides a Qt API for SQL
	   - UI Layer:      These classes link the data from a database to
	                    data-aware widgets.

if QT4_BUILD_SQL

choice
	prompt "SQLITE support    "
	default QT4_SQLITE_NULL

config QT4_SQLITE_NULL
	bool "none   "
	help
	 This disables entirely any SQLITE support

config QT4_SQLITE_BUILTIN
	bool "builtin"
	help
	  Link the driver into QtSql

config QT4_SQLITE_PLUGIN
	bool "plugin "
	help
	  Load the driver at runtime
endchoice

config QT4_SQLITE_SYSTEM
	bool
	depends on !QT4_SQLITE_NULL
	prompt "use system sqlite"

endif # QT4_BUILD_SQL

# make sure this symbol exists even if QT4_BUILD_SQL if disabled
config QT4_SQLITE_NONE
	bool
	default QT4_SQLITE_NULL || !QT4_BUILD_SQL


config QT4_BUILD_SCRIPT
	bool
	default y
	prompt "QtScript"
	help
	  The QtScript module provides classes for making Qt applications scriptable.
	  Qt Script is based on the ECMAScript scripting language, as defined in
	  standard ECMA-262.

config QT4_BUILD_SVG
	bool
	default y
	select QT4_BUILD_XML
	select QT4_BUILD_GUI
	prompt "QtSvg"
	help
	  The QtSvg module provides classes for displaying the contents of SVG files.

config QT4_BUILD_XML
	bool
	prompt "QtXml"
	help
	  The QtXml module provides a stream reader and writer for XML documents,
	  and C++ implementations of SAX and DOM.

config QT4_BUILD_DESIGNERLIBS
	bool
	select QT4_BUILD_XML
	select QT4_BUILD_TOOLS
	prompt "Qt Designer Libraries"
	help
	  This option enables two libraries:
	  - QtDesigner: Provides classes that allow you to create your own custom widget
	                plugins for Qt Designer, and classes that enable you to access
	                Qt Designer's components.
	  - QtUiTools:  Allows standalone applications dynamically create user interfaces
	                at run-time using the information stored in .ui files or specified
	                plugin paths

config QT4_BUILD_ASSISTANTLIB
	bool
	select QT4_BUILD_NETWORK
	select QT4_BUILD_XML
	select QT4_BUILD_SQL
	select QT4_BUILD_TOOLS
	prompt "QtAssistant"
	help
	  The QtAssistant module provides a means of launching Qt Assistant to provide
	  online help.

config QT4_BUILD_QTESTLIB
	bool
	prompt "QtTest"
	help
	  he QtTest module provides classes for unit testing Qt applications and libraries.

config QT4_BUILD_QTXMLPATTERNS
	bool
	select QT4_BUILD_NETWORK
	prompt "QtXmlPatterns"
	help
	  XQuery 1.0 and XPath 2.0 support for Qt

config QT4_BUILD_MULTIMEDIA
	bool
	select QT4_BUILD_GUI
	select QT4_BUILD_NETWORK
	prompt "Multimedia"
	help
	  The Multimedia API provides media playback and playlist support for
	  Qt Applications. Play music and movies through a single interface
	  with selectable output for movies to widgets or graphics view.

config QT4_BUILD_PHONON
	bool
	select QT4_BUILD_GUI
	select QT4_GLIB
	prompt "Phonon"
	help
	  Phonon is a cross-platform multimedia framework that enables the use
	  of audio and video content in Qt applications.

config QT4_BUILD_WEBKIT
	bool
	select QT4_BUILD_XML
	select QT4_BUILD_GUI
	select QT4_BUILD_NETWORK
	select QT4_BUILD_SQL
	select QT4_X11_XRENDER if QT4_PLATFORM_X11
	prompt "Webkit"
	help
	  QtWebKit provides a Web browser engine that makes it easy to embed
	  content from the World Wide Web into your Qt application. At the
	  same time Web content can be enhanced with native controls.

config QT4_BUILD_SCRIPTTOOLS
	bool
	select QT4_BUILD_GUI
	select QT4_BUILD_SCRIPT
	prompt "ScriptTools"
	help
	  QtScriptTools provides additional components for applications that
	  use Qt Script.

config QT4_BUILD_DECLARATIVE
	bool
	prompt "Declarative"
	select QT4_BUILD_GUI
	select QT4_BUILD_SQL
	select QT4_BUILD_SCRIPT
	select QT4_BUILD_NETWORK
	help
	  QtDeclarative is a C++ library that provides the underlying engine,
	  which translates the declarative description of the UI in QML into
	  items on a QGraphicsScene. The library also provides APIs to bind
	  custom C++ types and elements to QML, and to connect the QML UI with
	  the underlying application logic written in C++.

config QT4_INSTALL_QMLVIEWER
	bool
	prompt "install qmlviewer"
	select QT4_BUILD_SQL
	select QT4_BUILD_TOOLS
	depends on QT4_BUILD_DECLARATIVE

endmenu

config QT4_BUILD_TOOLS
	bool

if QT4_PLATFORM_EMBEDDED

menu "Install Fonts               "

	config QT4_FONT_DEJAVU
		bool
		prompt "DejaVu"

	config QT4_FONT_UT
		bool
		prompt "UT"

	config QT4_FONT_VERA
		bool
		prompt "Vera"

	config QT4_FONT_C0
		bool
		prompt "c0"

	config QT4_FONT_COUR
		bool
		prompt "cour"

	config QT4_FONT_CURSOR
		bool
		prompt "cursor"

	config QT4_FONT_FIXED
		bool
		prompt "fixed"

	config QT4_FONT_HELVETICA
		bool
		prompt "helvetica"

	config QT4_FONT_JAPANESE
		bool
		prompt "japanese"

	config QT4_FONT_L04
		bool
		prompt "l04"

endmenu

endif

endif