author | mickeyl <mickeyl> | 2004-05-03 09:40:07 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-05-03 09:40:07 (UTC) |
commit | fb6f93892d4d0e0471d62f5b5ab6d9bdef0a5e76 (patch) (unidiff) | |
tree | 9ff1498eddd22a29df1639abb66b863ac5d36931 /config.in | |
parent | d65575b75d8b755e27a1b7c655ad464fc417d093 (diff) | |
download | opie-fb6f93892d4d0e0471d62f5b5ab6d9bdef0a5e76.zip opie-fb6f93892d4d0e0471d62f5b5ab6d9bdef0a5e76.tar.gz opie-fb6f93892d4d0e0471d62f5b5ab6d9bdef0a5e76.tar.bz2 |
remove the OPIE_WE_VERSION crap. this was a step into the wrong direction.
remove the wireless.h user headers also. we are doomed to use the kernel
ones until Jean himself provides user headers. As a nice side effect,
the automatic WE_VERSION detected has been removed. It was too weak anyway,
since e.g. the handhelds.org community updated kernel 2.4.19 to WE V16
about 14 months ago...
-rw-r--r-- | config.in | 11 |
1 files changed, 0 insertions, 11 deletions
@@ -103,107 +103,96 @@ 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 |