|
diff --git a/config.in b/config.in index 5c23904..99341e6 100644 --- a/ config.in+++ b/ config.in |
|
@@ -1,265 +1,254 @@ |
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 |
15 | config TARGET_MACOSX |
16 | boolean "Mac OS X (DARWIN)" |
16 | boolean "Mac OS X (DARWIN)" |
17 | |
17 | |
18 | config TARGET_SHARP |
18 | config TARGET_SHARP |
19 | boolean "Sharp Zaurus w/ SA1100 (5000 and 5500)" |
19 | boolean "Sharp Zaurus w/ SA1100 (5000 and 5500)" |
20 | |
20 | |
21 | config TARGET_C700 |
21 | config TARGET_C700 |
22 | boolean "Sharp Zaurus w/ PXA25x (5600, C7x0, C8x0)" |
22 | boolean "Sharp Zaurus w/ PXA25x (5600, C7x0, C8x0)" |
23 | |
23 | |
24 | config TARGET_IPAQ |
24 | config TARGET_IPAQ |
25 | boolean "iPAQ" |
25 | boolean "iPAQ" |
26 | |
26 | |
27 | config TARGET_RAMSES |
27 | config TARGET_RAMSES |
28 | boolean "Ramses" |
28 | boolean "Ramses" |
29 | |
29 | |
30 | config TARGET_SIMPAD |
30 | config TARGET_SIMPAD |
31 | boolean "SIMpad" |
31 | boolean "SIMpad" |
32 | |
32 | |
33 | config TARGET_YOPY |
33 | config TARGET_YOPY |
34 | boolean "Yopy 3500/3700" |
34 | boolean "Yopy 3500/3700" |
35 | |
35 | |
36 | endchoice |
36 | endchoice |
37 | |
37 | |
38 | config OPTIMIZE |
38 | config OPTIMIZE |
39 | boolean "Use optimizations" |
39 | boolean "Use optimizations" |
40 | default "y" if ! TARGET_X86 |
40 | default "y" if ! TARGET_X86 |
41 | |
41 | |
42 | # added for threaded compile |
42 | # added for threaded compile |
43 | config THREADED |
43 | config THREADED |
44 | boolean "Enable threaded build" |
44 | boolean "Enable threaded build" |
45 | default "n" |
45 | default "n" |
46 | |
46 | |
47 | config DEBUG |
47 | config DEBUG |
48 | boolean "Enable debug builds" |
48 | boolean "Enable debug builds" |
49 | default n |
49 | default n |
50 | config RELEASE |
50 | config RELEASE |
51 | bool |
51 | bool |
52 | default y |
52 | default y |
53 | depends !DEBUG |
53 | depends !DEBUG |
54 | |
54 | |
55 | config QUICK_LAUNCH |
55 | config QUICK_LAUNCH |
56 | boolean "Enable Quick Launch" |
56 | boolean "Enable Quick Launch" |
57 | default n if TARGET_X86 |
57 | default n if TARGET_X86 |
58 | default y if ! TARGET_X86 |
58 | default y if ! TARGET_X86 |
59 | |
59 | |
60 | config QUICKLAUNCH_PATH |
60 | config QUICKLAUNCH_PATH |
61 | string "Path to quicklauncher" |
61 | string "Path to quicklauncher" |
62 | default "./quicklauncher" if TARGET_X86 |
62 | default "./quicklauncher" if TARGET_X86 |
63 | default "/opt/QtPalmtop/bin/quicklauncher" if ! TARGET_X86 |
63 | default "/opt/QtPalmtop/bin/quicklauncher" if ! TARGET_X86 |
64 | |
64 | |
65 | config SPECFILE |
65 | config SPECFILE |
66 | string |
66 | string |
67 | default "qws/linux-generic-g++" if TARGET_X86 && (! X11) |
67 | default "qws/linux-generic-g++" if TARGET_X86 && (! X11) |
68 | default "linux-g++" if TARGET_X86 && X11 |
68 | default "linux-g++" if TARGET_X86 && X11 |
69 | default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11) |
69 | default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11) |
70 | default "linux-g++" if TARGET_SHARP && X11 |
70 | default "linux-g++" if TARGET_SHARP && X11 |
71 | default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) |
71 | default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) |
72 | default "linux-g++" if TARGET_IPAQ && X11 |
72 | default "linux-g++" if TARGET_IPAQ && X11 |
73 | default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11) |
73 | default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11) |
74 | default "linux-g++" if TARGET_RAMSES && X11 |
74 | default "linux-g++" if TARGET_RAMSES && X11 |
75 | default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11) |
75 | default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11) |
76 | default "linux-g++" if TARGET_SIMPAD && X11 |
76 | default "linux-g++" if TARGET_SIMPAD && X11 |
77 | default "qws/linux-yopy-g++" if TARGET_YOPY && (! X11) |
77 | default "qws/linux-yopy-g++" if TARGET_YOPY && (! X11) |
78 | default "qws/macx-generic-g++" if TARGET_MACOSX && (! X11) |
78 | default "qws/macx-generic-g++" if TARGET_MACOSX && (! X11) |
79 | |
79 | |
80 | config CUSTOMFILE |
80 | config CUSTOMFILE |
81 | string |
81 | string |
82 | default "custom-ipaq.h" if TARGET_IPAQ |
82 | default "custom-ipaq.h" if TARGET_IPAQ |
83 | default "custom-sharp.h" if TARGET_SHARP |
83 | default "custom-sharp.h" if TARGET_SHARP |
84 | default "custom-ramses.h" if TARGET_RAMSES |
84 | default "custom-ramses.h" if TARGET_RAMSES |
85 | default "custom-ipaq.h" if TARGET_SIMPAD |
85 | default "custom-ipaq.h" if TARGET_SIMPAD |
86 | default "custom-yopy.h" if TARGET_YOPY |
86 | default "custom-yopy.h" if TARGET_YOPY |
87 | |
87 | |
88 | config OPTIMIZATIONS |
88 | config OPTIMIZATIONS |
89 | string "Optimization flags" |
89 | string "Optimization flags" |
90 | depends OPTIMIZE |
90 | depends OPTIMIZE |
91 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ |
91 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ |
92 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_YOPY |
92 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_YOPY |
93 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SHARP |
93 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SHARP |
94 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_RAMSES |
94 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_RAMSES |
95 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SIMPAD |
95 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SIMPAD |
96 | default "-march=armv5te -mtune=xscale -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_C700 |
96 | default "-march=armv5te -mtune=xscale -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_C700 |
97 | |
97 | |
98 | config EXPERIMENTAL |
98 | config EXPERIMENTAL |
99 | bool "Prompt for development and/or incomplete items" |
99 | bool "Prompt for development and/or incomplete items" |
100 | default y |
100 | default y |
101 | |
101 | |
102 | endmenu |
102 | endmenu |
103 | |
103 | |
104 | menu "Configuration" |
104 | menu "Configuration" |
105 | config OPIE_NO_OVERRIDE_QT |
105 | config OPIE_NO_OVERRIDE_QT |
106 | boolean "Build Opie against an unpatched version of Qt" |
106 | boolean "Build Opie against an unpatched version of Qt" |
107 | default n |
107 | default n |
108 | |
108 | |
109 | config OPIE_NO_BUILTIN_SHUTDOWN |
109 | config OPIE_NO_BUILTIN_SHUTDOWN |
110 | boolean "Disable the built in shutdown application" |
110 | boolean "Disable the built in shutdown application" |
111 | default y |
111 | default y |
112 | |
112 | |
113 | config OPIE_NO_BUILTIN_CALIBRATE |
113 | config OPIE_NO_BUILTIN_CALIBRATE |
114 | boolean "Disable the built in calibrate application" |
114 | boolean "Disable the built in calibrate application" |
115 | default y if TARGET_YOPY |
115 | default y if TARGET_YOPY |
116 | default n if ! TARGET_YOPY |
116 | default n if ! TARGET_YOPY |
117 | |
117 | |
118 | config OPIE_SOUND_FRAGMENT_SHIFT |
118 | config OPIE_SOUND_FRAGMENT_SHIFT |
119 | string "The sound fragment used in Opie Player I" |
119 | string "The sound fragment used in Opie Player I" |
120 | default "14" if TARGET_IPAQ |
120 | default "14" if TARGET_IPAQ |
121 | default "16" if ! TARGET_IPAQ |
121 | default "16" if ! TARGET_IPAQ |
122 | |
122 | |
123 | config USE_REALTIME_AUDIO_THREAD |
123 | config USE_REALTIME_AUDIO_THREAD |
124 | boolean "Use a realtime thread in Opie Player I" |
124 | boolean "Use a realtime thread in Opie Player I" |
125 | default y if TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP |
125 | default y if TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP |
126 | default n if ! (TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP) |
126 | default n if ! (TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP) |
127 | |
127 | |
128 | config QT_QWS_ALLOW_OVERCLOCK |
128 | config QT_QWS_ALLOW_OVERCLOCK |
129 | boolean "Allow the user to overclock the device" |
129 | boolean "Allow the user to overclock the device" |
130 | depends TARGET_RAMSES |
130 | depends TARGET_RAMSES |
131 | default n |
131 | default n |
132 | |
132 | |
133 | config OPIE_HIGH_RES_SMALL_PHY |
133 | config OPIE_HIGH_RES_SMALL_PHY |
134 | boolean "Resolution is bigger than physical screen" |
134 | boolean "Resolution is bigger than physical screen" |
135 | default y if TARGET_C700 |
135 | default y if TARGET_C700 |
136 | default n if ! TARGET_C700 |
136 | default n if ! TARGET_C700 |
137 | |
137 | |
138 | config USE_FILE_NOTIFICATION |
138 | config USE_FILE_NOTIFICATION |
139 | boolean "Substitute (some) polling interfaces with OFileNotifier" |
139 | boolean "Substitute (some) polling interfaces with OFileNotifier" |
140 | default y |
140 | default y |
141 | |
141 | |
142 | config OPIE_NEW_ALLOC |
142 | config OPIE_NEW_ALLOC |
143 | boolean "Use malloc and free for the implementation" |
143 | boolean "Use malloc and free for the implementation" |
144 | default y if TARGET_RAMSES || TARGET_IPAQ || TARGET_SIMPAD || TARGET_SHARP |
144 | default y if TARGET_RAMSES || TARGET_IPAQ || TARGET_SIMPAD || TARGET_SHARP |
145 | default n if ! (TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP) |
145 | default n if ! (TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP) |
146 | |
146 | |
147 | config OPIE_NO_SOUND_PCM_READ_BITS |
147 | config OPIE_NO_SOUND_PCM_READ_BITS |
148 | boolean "There is not a pcm_read_bits io control" |
148 | boolean "There is not a pcm_read_bits io control" |
149 | default y if TARGET_SHARP |
149 | default y if TARGET_SHARP |
150 | default n if ! TARGET_SHARP |
150 | default n if ! TARGET_SHARP |
151 | |
| |
152 | config OPIE_WE_VERSION_OVERRIDE |
| |
153 | boolean "Override autodetection of wireless extension (WE) version" |
| |
154 | default n |
| |
155 | |
| |
156 | config OPIE_WE_VERSION |
| |
157 | depends OPIE_WE_VERSION_OVERRIDE |
| |
158 | string "The wireless extension (WE) version to build against" |
| |
159 | default "15" if ! TARGET_X86 |
| |
160 | default "16" if TARGET_X86 |
| |
161 | |
| |
162 | endmenu |
151 | endmenu |
163 | |
152 | |
164 | menu "Dependencies" |
153 | menu "Dependencies" |
165 | source dependencies.in |
154 | source dependencies.in |
166 | endmenu |
155 | endmenu |
167 | |
156 | |
168 | menu "Base" |
157 | menu "Base" |
169 | choice |
158 | choice |
170 | prompt "Qpe Library Selection" |
159 | prompt "Qpe Library Selection" |
171 | default LIBQPE |
160 | default LIBQPE |
172 | source library/config.in |
161 | source library/config.in |
173 | source x11/config.in |
162 | source x11/config.in |
174 | endchoice |
163 | endchoice |
175 | source libopie/config.in |
164 | source libopie/config.in |
176 | |
165 | |
177 | source libopie2/config.in |
166 | source libopie2/config.in |
178 | source libqtaux/config.in |
167 | source libqtaux/config.in |
179 | source rsync/config.in |
168 | source rsync/config.in |
180 | source core/opie-login/config.in |
169 | source core/opie-login/config.in |
181 | source core/opiealarm/config.in |
170 | source core/opiealarm/config.in |
182 | source core/tools/quicklauncher/config.in |
171 | source core/tools/quicklauncher/config.in |
183 | source core/launcher/config.in |
172 | source core/launcher/config.in |
184 | source core/symlinker/config.in |
173 | source core/symlinker/config.in |
185 | endmenu |
174 | endmenu |
186 | |
175 | |
187 | comment "" |
176 | comment "" |
188 | |
177 | |
189 | menu "Applets" |
178 | menu "Applets" |
190 | source core/applets/config.in |
179 | source core/applets/config.in |
191 | source noncore/applets/config.in |
180 | source noncore/applets/config.in |
192 | endmenu |
181 | endmenu |
193 | |
182 | |
194 | menu "Apps" |
183 | menu "Apps" |
195 | source core/apps/config.in |
184 | source core/apps/config.in |
196 | source noncore/apps/config.in |
185 | source noncore/apps/config.in |
197 | endmenu |
186 | endmenu |
198 | |
187 | |
199 | menu "Communications and Networking" |
188 | menu "Communications and Networking" |
200 | source noncore/comm/config.in |
189 | source noncore/comm/config.in |
201 | source noncore/net/config.in |
190 | source noncore/net/config.in |
202 | endmenu |
191 | endmenu |
203 | |
192 | |
204 | menu "Games" |
193 | menu "Games" |
205 | source noncore/games/config.in |
194 | source noncore/games/config.in |
206 | endmenu |
195 | endmenu |
207 | |
196 | |
208 | menu "Graphics and Multimedia" |
197 | menu "Graphics and Multimedia" |
209 | source freetype/config.in |
198 | source freetype/config.in |
210 | source noncore/graphics/config.in |
199 | source noncore/graphics/config.in |
211 | source core/multimedia/config.in |
200 | source core/multimedia/config.in |
212 | source noncore/multimedia/config.in |
201 | source noncore/multimedia/config.in |
213 | endmenu |
202 | endmenu |
214 | |
203 | |
215 | menu "Input methods" |
204 | menu "Input methods" |
216 | source inputmethods/config.in |
205 | source inputmethods/config.in |
217 | endmenu |
206 | endmenu |
218 | |
207 | |
219 | menu "Pim" |
208 | menu "Pim" |
220 | source core/pim/config.in |
209 | source core/pim/config.in |
221 | comment "Today Plugins ---" |
210 | comment "Today Plugins ---" |
222 | source noncore/todayplugins/config.in |
211 | source noncore/todayplugins/config.in |
223 | source core/pim/today/plugins/config.in |
212 | source core/pim/today/plugins/config.in |
224 | endmenu |
213 | endmenu |
225 | |
214 | |
226 | menu "Settings" |
215 | menu "Settings" |
227 | source core/settings/config.in |
216 | source core/settings/config.in |
228 | source noncore/settings/config.in |
217 | source noncore/settings/config.in |
229 | endmenu |
218 | endmenu |
230 | |
219 | |
231 | menu "Theming" |
220 | menu "Theming" |
232 | comment "Decorations ---" |
221 | comment "Decorations ---" |
233 | source noncore/decorations/config.in |
222 | source noncore/decorations/config.in |
234 | comment "Styles ---" |
223 | comment "Styles ---" |
235 | source noncore/styles/config.in |
224 | source noncore/styles/config.in |
236 | endmenu |
225 | endmenu |
237 | |
226 | |
238 | menu "Tools" |
227 | menu "Tools" |
239 | source noncore/tools/config.in |
228 | source noncore/tools/config.in |
240 | endmenu |
229 | endmenu |
241 | |
230 | |
242 | menu "Development" |
231 | menu "Development" |
243 | source development/keyview/config.in |
232 | source development/keyview/config.in |
244 | #source development/debugviewer/config.in |
233 | #source development/debugviewer/config.in |
245 | endmenu |
234 | endmenu |
246 | |
235 | |
247 | menu "Examples" |
236 | menu "Examples" |
248 | config EXAMPLES |
237 | config EXAMPLES |
249 | boolean "Compile Example Application" |
238 | boolean "Compile Example Application" |
250 | source examples/config.in |
239 | source examples/config.in |
251 | endmenu |
240 | endmenu |
252 | |
241 | |
253 | comment "" |
242 | comment "" |
254 | |
243 | |
255 | menu "Unsupported / Unmaintained" |
244 | menu "Unsupported / Unmaintained" |
256 | source noncore/unsupported/config.in |
245 | source noncore/unsupported/config.in |
257 | endmenu |
246 | endmenu |
258 | |
247 | |
259 | comment "" |
248 | comment "" |
260 | depends on EXPERIMENTAL |
249 | depends on EXPERIMENTAL |
261 | menu "Experimental" |
250 | menu "Experimental" |
262 | depends on EXPERIMENTAL |
251 | depends on EXPERIMENTAL |
263 | source libslcompat/config.in |
252 | source libslcompat/config.in |
264 | source core/qws/config.in |
253 | source core/qws/config.in |
265 | endmenu |
254 | endmenu |
|