author | kergoth <kergoth> | 2003-05-13 18:44:21 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-05-13 18:44:21 (UTC) |
commit | e239d5604ba8bd4cf8a1e2d606204c7372f87d2d (patch) (unidiff) | |
tree | 3072019347e0e50248ceaf7e27d0efcd5988a49e | |
parent | 519cde423dc632e548d69ab1edfa76336bb9926d (diff) | |
download | opie-e239d5604ba8bd4cf8a1e2d606204c7372f87d2d.zip opie-e239d5604ba8bd4cf8a1e2d606204c7372f87d2d.tar.gz opie-e239d5604ba8bd4cf8a1e2d606204c7372f87d2d.tar.bz2 |
Add 'experimental' config token, so we can enable/disable all experimental items in one fell swoop.
-rw-r--r-- | config.in | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -64,32 +64,36 @@ config CUSTOMFILE | |||
64 | 64 | ||
65 | 65 | ||
66 | config OPTIMIZATIONS | 66 | config OPTIMIZATIONS |
67 | string "Optimization flags" | 67 | string "Optimization flags" |
68 | depends OPTIMIZE | 68 | depends OPTIMIZE |
69 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ | 69 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ |
70 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SHARP | 70 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SHARP |
71 | 71 | ||
72 | #config CROSS | 72 | #config CROSS |
73 | # string "Crosscompilation prefix" | 73 | # string "Crosscompilation prefix" |
74 | # default "arm-linux-" | 74 | # default "arm-linux-" |
75 | # help | 75 | # help |
76 | # Crosscompilation prefix is the prefix which will be prepended | 76 | # Crosscompilation prefix is the prefix which will be prepended |
77 | # to all compilation commands. For example, a crosscompilation prefix | 77 | # to all compilation commands. For example, a crosscompilation prefix |
78 | # of arm-linux-, results in the build calling arm-linux-gcc as its CC. | 78 | # of arm-linux-, results in the build calling arm-linux-gcc as its CC. |
79 | 79 | ||
80 | config EXPERIMENTAL | ||
81 | bool "Prompt for development and/or incomplete items" | ||
82 | default y | ||
83 | |||
80 | endmenu | 84 | endmenu |
81 | 85 | ||
82 | menu "Base" | 86 | menu "Base" |
83 | choice | 87 | choice |
84 | prompt "Qpe Library Selection" | 88 | prompt "Qpe Library Selection" |
85 | default LIBQPE | 89 | default LIBQPE |
86 | 90 | ||
87 | source library/config.in | 91 | source library/config.in |
88 | source x11/config.in | 92 | source x11/config.in |
89 | endchoice | 93 | endchoice |
90 | source libopie/config.in | 94 | source libopie/config.in |
91 | source core/opie-login/config.in | 95 | source core/opie-login/config.in |
92 | source core/opiealarm/config.in | 96 | source core/opiealarm/config.in |
93 | source core/launcher/config.in | 97 | source core/launcher/config.in |
94 | source core/qws/config.in | 98 | source core/qws/config.in |
95 | endmenu | 99 | endmenu |
@@ -142,20 +146,22 @@ menu "Pim" | |||
142 | source core/pim/today/plugins/config.in | 146 | source core/pim/today/plugins/config.in |
143 | endmenu | 147 | endmenu |
144 | endmenu | 148 | endmenu |
145 | menu "Settings" | 149 | menu "Settings" |
146 | source core/settings/config.in | 150 | source core/settings/config.in |
147 | source noncore/settings/config.in | 151 | source noncore/settings/config.in |
148 | endmenu | 152 | endmenu |
149 | menu "Theming" | 153 | menu "Theming" |
150 | source noncore/decorations/config.in | 154 | source noncore/decorations/config.in |
151 | source noncore/styles/config.in | 155 | source noncore/styles/config.in |
152 | endmenu | 156 | endmenu |
153 | menu "Tools" | 157 | menu "Tools" |
154 | source noncore/tools/config.in | 158 | source noncore/tools/config.in |
155 | source development/config.in | 159 | source development/config.in |
156 | endmenu | 160 | endmenu |
157 | comment "" | 161 | comment "" |
162 | depends on EXPERIMENTAL | ||
158 | menu "Experimental" | 163 | menu "Experimental" |
164 | depends on EXPERIMENTAL | ||
159 | source libopie2/config.in | 165 | source libopie2/config.in |
160 | endmenu | 166 | endmenu |
161 | 167 | ||