|
diff --git a/config.in b/config.in index 4db0204..20fcf56 100644 --- a/ config.in+++ b/ config.in |
|
@@ -1,128 +1,132 @@ |
1 | mainmenu "Opie Configuration" |
1 | mainmenu "Opie Configuration" |
2 | |
2 | |
3 | menu "Build Parameters" |
3 | menu "Build Parameters" |
4 | |
4 | |
5 | choice |
5 | choice |
6 | prompt "Target Machine" |
6 | prompt "Target Machine" |
7 | default TARGET_X86 |
7 | default TARGET_X86 |
8 | help |
8 | help |
9 | Please select the architecture of the machine you will be |
9 | Please select the architecture of the machine you will be |
10 | building the OpenZaurus buildroot for. |
10 | building the OpenZaurus buildroot for. |
11 | |
11 | |
12 | config TARGET_X86 |
12 | config TARGET_X86 |
13 | boolean "Intel X86" |
13 | boolean "Intel X86" |
14 | |
14 | |
| |
15 | config TARGET_MACOSX |
| |
16 | boolean "Mac OS X (DARWIN)" |
| |
17 | |
15 | config TARGET_SHARP |
18 | config TARGET_SHARP |
16 | boolean "Sharp Zaurus" |
19 | boolean "Sharp Zaurus" |
17 | |
20 | |
18 | config TARGET_IPAQ |
21 | config TARGET_IPAQ |
19 | boolean "iPAQ" |
22 | boolean "iPAQ" |
20 | |
23 | |
21 | config TARGET_RAMSES |
24 | config TARGET_RAMSES |
22 | boolean "Ramses" |
25 | boolean "Ramses" |
23 | |
26 | |
24 | config TARGET_SIMPAD |
27 | config TARGET_SIMPAD |
25 | boolean "SIMpad" |
28 | boolean "SIMpad" |
26 | |
29 | |
27 | config TARGET_YOPY |
30 | config TARGET_YOPY |
28 | boolean "Yopy 3500/3700" |
31 | boolean "Yopy 3500/3700" |
29 | |
32 | |
30 | endchoice |
33 | endchoice |
31 | |
34 | |
32 | config OPTIMIZE |
35 | config OPTIMIZE |
33 | boolean "Use optimizations" |
36 | boolean "Use optimizations" |
34 | default "y" if ! TARGET_X86 |
37 | default "y" if ! TARGET_X86 |
35 | |
38 | |
36 | config DEBUG |
39 | config DEBUG |
37 | boolean "Enable debug builds" |
40 | boolean "Enable debug builds" |
38 | default n |
41 | default n |
39 | config RELEASE |
42 | config RELEASE |
40 | bool |
43 | bool |
41 | default y |
44 | default y |
42 | depends !DEBUG |
45 | depends !DEBUG |
43 | |
46 | |
44 | config QUICK_LAUNCH |
47 | config QUICK_LAUNCH |
45 | boolean "Enable Quick Launch" |
48 | boolean "Enable Quick Launch" |
46 | default n |
49 | default n |
47 | |
50 | |
48 | config OPIE_NO_OVERRIDE_QT |
51 | config OPIE_NO_OVERRIDE_QT |
49 | boolean "Build Opie against an unpatched version of Qt" |
52 | boolean "Build Opie against an unpatched version of Qt" |
50 | default n |
53 | default n |
51 | |
54 | |
52 | config SPECFILE |
55 | config SPECFILE |
53 | string |
56 | string |
54 | default "qws/linux-generic-g++" if TARGET_X86 && (! X11) |
57 | default "qws/linux-generic-g++" if TARGET_X86 && (! X11) |
55 | default "linux-g++" if TARGET_X86 && X11 |
58 | default "linux-g++" if TARGET_X86 && X11 |
56 | default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11) |
59 | default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11) |
57 | default "linux-g++" if TARGET_SHARP && X11 |
60 | default "linux-g++" if TARGET_SHARP && X11 |
58 | default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) |
61 | default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) |
59 | default "linux-g++" if TARGET_IPAQ && X11 |
62 | default "linux-g++" if TARGET_IPAQ && X11 |
60 | default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11) |
63 | default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11) |
61 | default "linux-g++" if TARGET_RAMSES && X11 |
64 | default "linux-g++" if TARGET_RAMSES && X11 |
62 | default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11) |
65 | default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11) |
63 | default "linux-g++" if TARGET_SIMPAD && X11 |
66 | default "linux-g++" if TARGET_SIMPAD && X11 |
64 | default "qws/linux-yopy-g++" if TARGET_YOPY && (! X11) |
67 | default "qws/linux-yopy-g++" if TARGET_YOPY && (! X11) |
| |
68 | default "qws/macx-generic-g++" if TARGET_MACOSX && (! X11) |
65 | |
69 | |
66 | config CUSTOMFILE |
70 | config CUSTOMFILE |
67 | string |
71 | string |
68 | default "custom-ipaq.h" if TARGET_IPAQ |
72 | default "custom-ipaq.h" if TARGET_IPAQ |
69 | default "custom-sharp.h" if TARGET_SHARP |
73 | default "custom-sharp.h" if TARGET_SHARP |
70 | default "custom-ramses.h" if TARGET_RAMSES |
74 | default "custom-ramses.h" if TARGET_RAMSES |
71 | default "custom-ipaq.h" if TARGET_SIMPAD |
75 | default "custom-ipaq.h" if TARGET_SIMPAD |
72 | default "custom-yopy.h" if TARGET_YOPY |
76 | default "custom-yopy.h" if TARGET_YOPY |
73 | |
77 | |
74 | config OPTIMIZATIONS |
78 | config OPTIMIZATIONS |
75 | string "Optimization flags" |
79 | string "Optimization flags" |
76 | depends OPTIMIZE |
80 | depends OPTIMIZE |
77 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ |
81 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ |
78 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_YOPY |
82 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_YOPY |
79 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SHARP |
83 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SHARP |
80 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_RAMSES |
84 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_RAMSES |
81 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SIMPAD |
85 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SIMPAD |
82 | |
86 | |
83 | config EXPERIMENTAL |
87 | config EXPERIMENTAL |
84 | bool "Prompt for development and/or incomplete items" |
88 | bool "Prompt for development and/or incomplete items" |
85 | default y |
89 | default y |
86 | |
90 | |
87 | endmenu |
91 | endmenu |
88 | |
92 | |
89 | menu "Base" |
93 | menu "Base" |
90 | choice |
94 | choice |
91 | prompt "Qpe Library Selection" |
95 | prompt "Qpe Library Selection" |
92 | default LIBQPE |
96 | default LIBQPE |
93 | source library/config.in |
97 | source library/config.in |
94 | source x11/config.in |
98 | source x11/config.in |
95 | endchoice |
99 | endchoice |
96 | source libopie/config.in |
100 | source libopie/config.in |
97 | source core/opie-login/config.in |
101 | source core/opie-login/config.in |
98 | source core/opiealarm/config.in |
102 | source core/opiealarm/config.in |
99 | source core/launcher/config.in |
103 | source core/launcher/config.in |
100 | source core/qws/config.in |
104 | source core/qws/config.in |
101 | endmenu |
105 | endmenu |
102 | |
106 | |
103 | comment "" |
107 | comment "" |
104 | |
108 | |
105 | menu "Applets" |
109 | menu "Applets" |
106 | source core/applets/config.in |
110 | source core/applets/config.in |
107 | source noncore/applets/config.in |
111 | source noncore/applets/config.in |
108 | endmenu |
112 | endmenu |
109 | |
113 | |
110 | menu "Apps" |
114 | menu "Apps" |
111 | source core/apps/config.in |
115 | source core/apps/config.in |
112 | source noncore/apps/config.in |
116 | source noncore/apps/config.in |
113 | endmenu |
117 | endmenu |
114 | |
118 | |
115 | menu "Communications and Networking" |
119 | menu "Communications and Networking" |
116 | source noncore/comm/config.in |
120 | source noncore/comm/config.in |
117 | source noncore/mail/config.in |
121 | source noncore/mail/config.in |
118 | source noncore/net/config.in |
122 | source noncore/net/config.in |
119 | endmenu |
123 | endmenu |
120 | |
124 | |
121 | menu "Games" |
125 | menu "Games" |
122 | source noncore/games/config.in |
126 | source noncore/games/config.in |
123 | endmenu |
127 | endmenu |
124 | |
128 | |
125 | menu "Graphics and Multimedia" |
129 | menu "Graphics and Multimedia" |
126 | source freetype/config.in |
130 | source freetype/config.in |
127 | source noncore/graphics/config.in |
131 | source noncore/graphics/config.in |
128 | source core/multimedia/config.in |
132 | source core/multimedia/config.in |
|