author | mickeyl <mickeyl> | 2004-01-13 21:20:38 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-01-13 21:20:38 (UTC) |
commit | 4a48472bbe915852ed6eaa66284b8b8c0f3b493d (patch) (unidiff) | |
tree | b244003518c03b8044f5bdce5c3acd23ef6ccaae /config.in | |
parent | ffe47019a96da4e6b7057fca30bb64274443099b (diff) | |
download | opie-4a48472bbe915852ed6eaa66284b8b8c0f3b493d.zip opie-4a48472bbe915852ed6eaa66284b8b8c0f3b493d.tar.gz opie-4a48472bbe915852ed6eaa66284b8b8c0f3b493d.tar.bz2 |
build system bits to get libqtaux built
-rw-r--r-- | config.in | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,248 +1,249 @@ | |||
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" | 19 | boolean "Sharp Zaurus" |
20 | 20 | ||
21 | config TARGET_IPAQ | 21 | config TARGET_IPAQ |
22 | boolean "iPAQ" | 22 | boolean "iPAQ" |
23 | 23 | ||
24 | config TARGET_RAMSES | 24 | config TARGET_RAMSES |
25 | boolean "Ramses" | 25 | boolean "Ramses" |
26 | 26 | ||
27 | config TARGET_SIMPAD | 27 | config TARGET_SIMPAD |
28 | boolean "SIMpad" | 28 | boolean "SIMpad" |
29 | 29 | ||
30 | config TARGET_YOPY | 30 | config TARGET_YOPY |
31 | boolean "Yopy 3500/3700" | 31 | boolean "Yopy 3500/3700" |
32 | 32 | ||
33 | endchoice | 33 | endchoice |
34 | 34 | ||
35 | config OPTIMIZE | 35 | config OPTIMIZE |
36 | boolean "Use optimizations" | 36 | boolean "Use optimizations" |
37 | default "y" if ! TARGET_X86 | 37 | default "y" if ! TARGET_X86 |
38 | 38 | ||
39 | config DEBUG | 39 | config DEBUG |
40 | boolean "Enable debug builds" | 40 | boolean "Enable debug builds" |
41 | default n | 41 | default n |
42 | config RELEASE | 42 | config RELEASE |
43 | bool | 43 | bool |
44 | default y | 44 | default y |
45 | depends !DEBUG | 45 | depends !DEBUG |
46 | 46 | ||
47 | config QUICK_LAUNCH | 47 | config QUICK_LAUNCH |
48 | boolean "Enable Quick Launch" | 48 | boolean "Enable Quick Launch" |
49 | default n | 49 | default n |
50 | 50 | ||
51 | config QUICKLAUNCH_PATH | 51 | config QUICKLAUNCH_PATH |
52 | string "Path to quicklauncher" | 52 | string "Path to quicklauncher" |
53 | default "./quicklauncher" if TARGET_X86 | 53 | default "./quicklauncher" if TARGET_X86 |
54 | default "/opt/QtPalmtop/bin/quicklauncher" if ! TARGET_X86 | 54 | default "/opt/QtPalmtop/bin/quicklauncher" if ! TARGET_X86 |
55 | 55 | ||
56 | config SPECFILE | 56 | config SPECFILE |
57 | string | 57 | string |
58 | default "qws/linux-generic-g++" if TARGET_X86 && (! X11) | 58 | default "qws/linux-generic-g++" if TARGET_X86 && (! X11) |
59 | default "linux-g++" if TARGET_X86 && X11 | 59 | default "linux-g++" if TARGET_X86 && X11 |
60 | default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11) | 60 | default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11) |
61 | default "linux-g++" if TARGET_SHARP && X11 | 61 | default "linux-g++" if TARGET_SHARP && X11 |
62 | default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) | 62 | default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) |
63 | default "linux-g++" if TARGET_IPAQ && X11 | 63 | default "linux-g++" if TARGET_IPAQ && X11 |
64 | default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11) | 64 | default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11) |
65 | default "linux-g++" if TARGET_RAMSES && X11 | 65 | default "linux-g++" if TARGET_RAMSES && X11 |
66 | default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11) | 66 | default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11) |
67 | default "linux-g++" if TARGET_SIMPAD && X11 | 67 | default "linux-g++" if TARGET_SIMPAD && X11 |
68 | default "qws/linux-yopy-g++" if TARGET_YOPY && (! X11) | 68 | default "qws/linux-yopy-g++" if TARGET_YOPY && (! X11) |
69 | default "qws/macx-generic-g++" if TARGET_MACOSX && (! X11) | 69 | default "qws/macx-generic-g++" if TARGET_MACOSX && (! X11) |
70 | 70 | ||
71 | config CUSTOMFILE | 71 | config CUSTOMFILE |
72 | string | 72 | string |
73 | default "custom-ipaq.h" if TARGET_IPAQ | 73 | default "custom-ipaq.h" if TARGET_IPAQ |
74 | default "custom-sharp.h" if TARGET_SHARP | 74 | default "custom-sharp.h" if TARGET_SHARP |
75 | default "custom-ramses.h" if TARGET_RAMSES | 75 | default "custom-ramses.h" if TARGET_RAMSES |
76 | default "custom-ipaq.h" if TARGET_SIMPAD | 76 | default "custom-ipaq.h" if TARGET_SIMPAD |
77 | default "custom-yopy.h" if TARGET_YOPY | 77 | default "custom-yopy.h" if TARGET_YOPY |
78 | 78 | ||
79 | config OPTIMIZATIONS | 79 | config OPTIMIZATIONS |
80 | string "Optimization flags" | 80 | string "Optimization flags" |
81 | depends OPTIMIZE | 81 | depends OPTIMIZE |
82 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ | 82 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ |
83 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_YOPY | 83 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_YOPY |
84 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SHARP | 84 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SHARP |
85 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_RAMSES | 85 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_RAMSES |
86 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SIMPAD | 86 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SIMPAD |
87 | 87 | ||
88 | config EXPERIMENTAL | 88 | config EXPERIMENTAL |
89 | bool "Prompt for development and/or incomplete items" | 89 | bool "Prompt for development and/or incomplete items" |
90 | default y | 90 | default y |
91 | 91 | ||
92 | endmenu | 92 | endmenu |
93 | 93 | ||
94 | menu "Opie Compile Configs" | 94 | menu "Opie Compile Configs" |
95 | config OPIE_NO_OVERRIDE_QT | 95 | config OPIE_NO_OVERRIDE_QT |
96 | boolean "Build Opie against an unpatched version of Qt" | 96 | boolean "Build Opie against an unpatched version of Qt" |
97 | default n | 97 | default n |
98 | 98 | ||
99 | 99 | ||
100 | config OPIE_NO_BUILTIN_SHUTDOWN | 100 | config OPIE_NO_BUILTIN_SHUTDOWN |
101 | boolean "Disable the built in shutdown application" | 101 | boolean "Disable the built in shutdown application" |
102 | default n | 102 | default n |
103 | 103 | ||
104 | config OPIE_NO_BUILTIN_CALIBRATE | 104 | config OPIE_NO_BUILTIN_CALIBRATE |
105 | boolean "Disable the built in calibrate application" | 105 | boolean "Disable the built in calibrate application" |
106 | default y if TARGET_YOPY | 106 | default y if TARGET_YOPY |
107 | default n | 107 | default n |
108 | 108 | ||
109 | config OPIE_SOUND_FRAGMENT_SHIFT | 109 | config OPIE_SOUND_FRAGMENT_SHIFT |
110 | string "The sound fragment used in Opie Player I" | 110 | string "The sound fragment used in Opie Player I" |
111 | default "14" if TARGET_IPAQ | 111 | default "14" if TARGET_IPAQ |
112 | default "16" if (!TARGET_IPAQ) | 112 | default "16" if (!TARGET_IPAQ) |
113 | 113 | ||
114 | config USE_REALTIME_AUDIO_THREAD | 114 | config USE_REALTIME_AUDIO_THREAD |
115 | boolean "Use a realtime thread in Opie Player I" | 115 | boolean "Use a realtime thread in Opie Player I" |
116 | default y if TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP | 116 | default y if TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP |
117 | default n | 117 | default n |
118 | 118 | ||
119 | config QT_QWS_ALLOW_OVERCLOCK | 119 | config QT_QWS_ALLOW_OVERCLOCK |
120 | boolean "Allow the user to overclock the device" | 120 | boolean "Allow the user to overclock the device" |
121 | depends TARGET_RAMSES | 121 | depends TARGET_RAMSES |
122 | default n | 122 | default n |
123 | 123 | ||
124 | config OPIE_HIGH_RES_SMALL_PHY | 124 | config OPIE_HIGH_RES_SMALL_PHY |
125 | boolean "Resolution is bigger than physical scrren" | 125 | boolean "Resolution is bigger than physical scrren" |
126 | default y if TARGET_C700 | 126 | default y if TARGET_C700 |
127 | default n | 127 | default n |
128 | 128 | ||
129 | config OPIE_NEW_ALLOC | 129 | config OPIE_NEW_ALLOC |
130 | boolean "Use malloc and free for the implementation" | 130 | boolean "Use malloc and free for the implementation" |
131 | default y if TARGET_RAMSES || TARGET_IPAQ || TARGET_SIMPAD || TARGET_SHARP | 131 | default y if TARGET_RAMSES || TARGET_IPAQ || TARGET_SIMPAD || TARGET_SHARP |
132 | default n | 132 | default n |
133 | 133 | ||
134 | config OPIE_NO_SOUND_PCM_READ_BITS | 134 | config OPIE_NO_SOUND_PCM_READ_BITS |
135 | boolean "there is not a pcm_read_bits io control" | 135 | boolean "there is not a pcm_read_bits io control" |
136 | default y if TARGET_SHARP | 136 | default y if TARGET_SHARP |
137 | default n | 137 | default n |
138 | 138 | ||
139 | endmenu | 139 | endmenu |
140 | 140 | ||
141 | menu "Base" | 141 | menu "Base" |
142 | choice | 142 | choice |
143 | prompt "Qpe Library Selection" | 143 | prompt "Qpe Library Selection" |
144 | default LIBQPE | 144 | default LIBQPE |
145 | source library/config.in | 145 | source library/config.in |
146 | source x11/config.in | 146 | source x11/config.in |
147 | endchoice | 147 | endchoice |
148 | source libopie/config.in | 148 | source libopie/config.in |
149 | source core/opie-login/config.in | 149 | source core/opie-login/config.in |
150 | source core/opiealarm/config.in | 150 | source core/opiealarm/config.in |
151 | source core/tools/quicklauncher/config.in | 151 | source core/tools/quicklauncher/config.in |
152 | source core/launcher/config.in | 152 | source core/launcher/config.in |
153 | source core/qws/config.in | 153 | source core/qws/config.in |
154 | endmenu | 154 | endmenu |
155 | 155 | ||
156 | comment "" | 156 | comment "" |
157 | 157 | ||
158 | menu "Applets" | 158 | menu "Applets" |
159 | source core/applets/config.in | 159 | source core/applets/config.in |
160 | source noncore/applets/config.in | 160 | source noncore/applets/config.in |
161 | endmenu | 161 | endmenu |
162 | 162 | ||
163 | menu "Apps" | 163 | menu "Apps" |
164 | source core/apps/config.in | 164 | source core/apps/config.in |
165 | source noncore/apps/config.in | 165 | source noncore/apps/config.in |
166 | endmenu | 166 | endmenu |
167 | 167 | ||
168 | menu "Communications and Networking" | 168 | menu "Communications and Networking" |
169 | source noncore/comm/config.in | 169 | source noncore/comm/config.in |
170 | source noncore/net/config.in | 170 | source noncore/net/config.in |
171 | endmenu | 171 | endmenu |
172 | 172 | ||
173 | menu "Games" | 173 | menu "Games" |
174 | source noncore/games/config.in | 174 | source noncore/games/config.in |
175 | endmenu | 175 | endmenu |
176 | 176 | ||
177 | menu "Graphics and Multimedia" | 177 | menu "Graphics and Multimedia" |
178 | source freetype/config.in | 178 | source freetype/config.in |
179 | source noncore/graphics/config.in | 179 | source noncore/graphics/config.in |
180 | source core/multimedia/config.in | 180 | source core/multimedia/config.in |
181 | source noncore/multimedia/config.in | 181 | source noncore/multimedia/config.in |
182 | endmenu | 182 | endmenu |
183 | 183 | ||
184 | menu "Input methods" | 184 | menu "Input methods" |
185 | source inputmethods/config.in | 185 | source inputmethods/config.in |
186 | endmenu | 186 | endmenu |
187 | 187 | ||
188 | menu "Pim" | 188 | menu "Pim" |
189 | source core/pim/config.in | 189 | source core/pim/config.in |
190 | menu "Today Plugins" | 190 | menu "Today Plugins" |
191 | source noncore/todayplugins/config.in | 191 | source noncore/todayplugins/config.in |
192 | source core/pim/today/plugins/config.in | 192 | source core/pim/today/plugins/config.in |
193 | endmenu | 193 | endmenu |
194 | endmenu | 194 | endmenu |
195 | 195 | ||
196 | menu "Settings" | 196 | menu "Settings" |
197 | source core/settings/config.in | 197 | source core/settings/config.in |
198 | source noncore/settings/config.in | 198 | source noncore/settings/config.in |
199 | endmenu | 199 | endmenu |
200 | 200 | ||
201 | menu "Theming" | 201 | menu "Theming" |
202 | source noncore/decorations/config.in | 202 | source noncore/decorations/config.in |
203 | source noncore/styles/config.in | 203 | source noncore/styles/config.in |
204 | endmenu | 204 | endmenu |
205 | 205 | ||
206 | menu "Tools" | 206 | menu "Tools" |
207 | source noncore/tools/config.in | 207 | source noncore/tools/config.in |
208 | endmenu | 208 | endmenu |
209 | 209 | ||
210 | menu "Development" | 210 | menu "Development" |
211 | source development/keyview/config.in | 211 | source development/keyview/config.in |
212 | #source development/debugviewer/config.in | 212 | #source development/debugviewer/config.in |
213 | endmenu | 213 | endmenu |
214 | 214 | ||
215 | menu "Examples" | 215 | menu "Examples" |
216 | config EXAMPLES | 216 | config EXAMPLES |
217 | boolean "Compile Example Application" | 217 | boolean "Compile Example Application" |
218 | source examples/config.in | 218 | source examples/config.in |
219 | endmenu | 219 | endmenu |
220 | 220 | ||
221 | comment "" | 221 | comment "" |
222 | 222 | ||
223 | menu "Unsupported / Unmaintained" | 223 | menu "Unsupported / Unmaintained" |
224 | source noncore/unsupported/config.in | 224 | source noncore/unsupported/config.in |
225 | endmenu | 225 | endmenu |
226 | 226 | ||
227 | comment "" | 227 | comment "" |
228 | depends on EXPERIMENTAL | 228 | depends on EXPERIMENTAL |
229 | menu "Experimental" | 229 | menu "Experimental" |
230 | depends on EXPERIMENTAL | 230 | depends on EXPERIMENTAL |
231 | source libopie2/config.in | 231 | source libopie2/config.in |
232 | source libqtaux/config.in | ||
232 | 233 | ||
233 | config SQL_PIM_BACKEND | 234 | config SQL_PIM_BACKEND |
234 | bool "Add SQL-Backend support (experimental)" | 235 | bool "Add SQL-Backend support" |
235 | default n | 236 | default n |
236 | help | 237 | help |
237 | This adds the SQL-Support, using SQLite. Which database is used | 238 | This adds the SQL-Support, using SQLite. Which database is used |
238 | by the backends is defined by the file "pimaccess.conf" in the | 239 | by the backends is defined by the file "pimaccess.conf" in the |
239 | directory "Settings". | 240 | directory "Settings". |
240 | There currently do exist to groups "[contact]" and "[todo]". You can | 241 | There currently do exist to groups "[contact]" and "[todo]". You can |
241 | select the used backend by the variable "usebackend=<type>", where | 242 | select the used backend by the variable "usebackend=<type>", where |
242 | <type> is "sql" or "xml". "xml" is the default ! | 243 | <type> is "sql" or "xml". "xml" is the default ! |
243 | Important: The SQLite-library "libsqlite.so" must be installed ! | 244 | Important: The SQLite-library "libsqlite.so" must be installed ! |
244 | depends ( LIBOPIE2DB ) | 245 | depends ( LIBOPIE2DB ) |
245 | 246 | ||
246 | comment "SQL-Support needs libopie2db!" | 247 | comment "SQL-Support needs libopie2db!" |
247 | depends !( LIBOPIE2DB ) | 248 | depends !( LIBOPIE2DB ) |
248 | endmenu | 249 | endmenu |