summaryrefslogtreecommitdiff
path: root/config.in
authoreilers <eilers>2004-12-20 16:02:59 (UTC)
committer eilers <eilers>2004-12-20 16:02:59 (UTC)
commit68ae26d1e6368ec73acf11d09067820fc882f402 (patch) (unidiff)
tree16726c742f96e2659abd41d5596549e2163de641 /config.in
parent3877c5de73003ca03888a35c7f6905b65f3ba602 (diff)
downloadopie-68ae26d1e6368ec73acf11d09067820fc882f402.zip
opie-68ae26d1e6368ec73acf11d09067820fc882f402.tar.gz
opie-68ae26d1e6368ec73acf11d09067820fc882f402.tar.bz2
Added a switch to disable automatic use of ccache. Needed for darwin based systems..
Diffstat (limited to 'config.in') (more/less context) (show whitespace changes)
-rw-r--r--config.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/config.in b/config.in
index 8cffa38..d9659be 100644
--- a/config.in
+++ b/config.in
@@ -18,192 +18,196 @@ choice
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_OE 24 config TARGET_OE
25 boolean "OpenEmbedded w/ OE build dir set below" 25 boolean "OpenEmbedded w/ OE build dir set below"
26 26
27 config TARGET_IPAQ 27 config TARGET_IPAQ
28 boolean "iPAQ" 28 boolean "iPAQ"
29 29
30 config TARGET_RAMSES 30 config TARGET_RAMSES
31 boolean "Ramses" 31 boolean "Ramses"
32 32
33 config TARGET_SIMPAD 33 config TARGET_SIMPAD
34 boolean "SIMpad" 34 boolean "SIMpad"
35 35
36 config TARGET_YOPY 36 config TARGET_YOPY
37 boolean "Yopy 3500/3700" 37 boolean "Yopy 3500/3700"
38endchoice 38endchoice
39 39
40config OE_BUILD_DIR 40config OE_BUILD_DIR
41 depends TARGET_OE 41 depends TARGET_OE
42 string "OE build directory" 42 string "OE build directory"
43 default ">>>set OpenEmbedded build directory here<<<" 43 default ">>>set OpenEmbedded build directory here<<<"
44 44
45config OPTIMIZE 45config OPTIMIZE
46 boolean "Use optimizations" 46 boolean "Use optimizations"
47 default "y" if ! TARGET_X86 47 default "y" if ! TARGET_X86
48 48
49config THREADED 49config THREADED
50 boolean "Enable threaded build" 50 boolean "Enable threaded build"
51 default "n" 51 default "n"
52 52
53config STATIC 53config STATIC
54 boolean "Build static libraries" 54 boolean "Build static libraries"
55 default "n" 55 default "n"
56 56
57config DEBUG 57config DEBUG
58 boolean "Enable debug builds" 58 boolean "Enable debug builds"
59 default n 59 default n
60 60
61config RELEASE 61config RELEASE
62 bool 62 bool
63 default y 63 default y
64 depends !DEBUG 64 depends !DEBUG
65 65
66config QUICK_LAUNCH 66config QUICK_LAUNCH
67 boolean "Enable Quick Launch" 67 boolean "Enable Quick Launch"
68 default n if TARGET_X86 68 default n if TARGET_X86
69 default y if ! TARGET_X86 69 default y if ! TARGET_X86
70 70
71config QUICKLAUNCH_PATH 71config QUICKLAUNCH_PATH
72 string "Path to quicklauncher" 72 string "Path to quicklauncher"
73 default "./quicklauncher" if TARGET_X86 73 default "./quicklauncher" if TARGET_X86
74 default "/opt/QtPalmtop/bin/quicklauncher" if ! TARGET_X86 74 default "/opt/QtPalmtop/bin/quicklauncher" if ! TARGET_X86
75 75
76config SPECFILE 76config SPECFILE
77 string 77 string
78 default "qws/linux-generic-g++" if TARGET_X86 && (! X11) 78 default "qws/linux-generic-g++" if TARGET_X86 && (! X11)
79 default "linux-g++" if TARGET_X86 && X11 79 default "linux-g++" if TARGET_X86 && X11
80 default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11) 80 default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11)
81 default "linux-g++" if TARGET_SHARP && X11 81 default "linux-g++" if TARGET_SHARP && X11
82 default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) 82 default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11)
83 default "linux-g++" if TARGET_IPAQ && X11 83 default "linux-g++" if TARGET_IPAQ && X11
84 default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11) 84 default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11)
85 default "linux-g++" if TARGET_RAMSES && X11 85 default "linux-g++" if TARGET_RAMSES && X11
86 default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11) 86 default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11)
87 default "linux-g++" if TARGET_SIMPAD && X11 87 default "linux-g++" if TARGET_SIMPAD && X11
88 default "qws/linux-yopy-g++" if TARGET_YOPY && (! X11) 88 default "qws/linux-yopy-g++" if TARGET_YOPY && (! X11)
89 default "qws/macx-generic-g++" if TARGET_MACOSX && (! X11) 89 default "qws/macx-generic-g++" if TARGET_MACOSX && (! X11)
90 default "qws/linux-oe-g++" if TARGET_OE && (!X11) 90 default "qws/linux-oe-g++" if TARGET_OE && (!X11)
91 91
92config CUSTOMFILE 92config CUSTOMFILE
93 string 93 string
94 default "custom-ipaq.h" if TARGET_IPAQ 94 default "custom-ipaq.h" if TARGET_IPAQ
95 default "custom-sharp.h" if TARGET_SHARP 95 default "custom-sharp.h" if TARGET_SHARP
96 default "custom-ramses.h" if TARGET_RAMSES 96 default "custom-ramses.h" if TARGET_RAMSES
97 default "custom-ipaq.h" if TARGET_SIMPAD 97 default "custom-ipaq.h" if TARGET_SIMPAD
98 default "custom-yopy.h" if TARGET_YOPY 98 default "custom-yopy.h" if TARGET_YOPY
99 99
100config OPTIMIZATIONS 100config OPTIMIZATIONS
101 string "Optimization flags" 101 string "Optimization flags"
102 depends OPTIMIZE 102 depends OPTIMIZE
103 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ 103 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ
104 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_YOPY 104 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_YOPY
105 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SHARP 105 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SHARP
106 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_RAMSES 106 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_RAMSES
107 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SIMPAD 107 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SIMPAD
108 default "-march=armv5te -mtune=xscale -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_C700 108 default "-march=armv5te -mtune=xscale -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_C700
109 109
110config EXPERIMENTAL 110config EXPERIMENTAL
111 bool "Prompt for development and/or incomplete items" 111 bool "Prompt for development and/or incomplete items"
112 default y 112 default y
113 113
114config USE_CCACHE
115 bool "Use ccache, if available?"
116 default y
117
114endmenu 118endmenu
115 119
116menu "Configuration" 120menu "Configuration"
117config OPIE_NO_OVERRIDE_QT 121config OPIE_NO_OVERRIDE_QT
118 boolean "Build Opie against an unpatched version of Qt" 122 boolean "Build Opie against an unpatched version of Qt"
119 default n 123 default n
120 124
121config OPIE_NO_ERASERECT_FIX 125config OPIE_NO_ERASERECT_FIX
122 boolean "Disable Fixup eraseRect for HancomMobileWord,neocal.. to make libopiecore work on Sharps libqpe" 126 boolean "Disable Fixup eraseRect for HancomMobileWord,neocal.. to make libopiecore work on Sharps libqpe"
123 default n 127 default n
124 128
125config OPIE_NO_BUILTIN_SHUTDOWN 129config OPIE_NO_BUILTIN_SHUTDOWN
126 boolean "Disable the built in shutdown application" 130 boolean "Disable the built in shutdown application"
127 default y 131 default y
128 132
129config OPIE_NO_BUILTIN_CALIBRATE 133config OPIE_NO_BUILTIN_CALIBRATE
130 boolean "Disable the built in calibrate application" 134 boolean "Disable the built in calibrate application"
131 default y if TARGET_YOPY 135 default y if TARGET_YOPY
132 default n if ! TARGET_YOPY 136 default n if ! TARGET_YOPY
133 137
134config OPIE_SOUND_FRAGMENT_SHIFT 138config OPIE_SOUND_FRAGMENT_SHIFT
135 string "The sound fragment used in Opie Player I" 139 string "The sound fragment used in Opie Player I"
136 default "14" if TARGET_IPAQ 140 default "14" if TARGET_IPAQ
137 default "16" if ! TARGET_IPAQ 141 default "16" if ! TARGET_IPAQ
138 142
139config USE_REALTIME_AUDIO_THREAD 143config USE_REALTIME_AUDIO_THREAD
140 boolean "Use a realtime thread in Opie Player I" 144 boolean "Use a realtime thread in Opie Player I"
141 default y if TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP 145 default y if TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP
142 default n if ! (TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP) 146 default n if ! (TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP)
143 147
144config QT_QWS_ALLOW_OVERCLOCK 148config QT_QWS_ALLOW_OVERCLOCK
145 boolean "Allow the user to overclock the device" 149 boolean "Allow the user to overclock the device"
146 depends TARGET_RAMSES 150 depends TARGET_RAMSES
147 default n 151 default n
148 152
149config USE_FILE_NOTIFICATION 153config USE_FILE_NOTIFICATION
150 boolean "Substitute (some) polling interfaces with OFileNotifier" 154 boolean "Substitute (some) polling interfaces with OFileNotifier"
151 default y 155 default y
152 156
153config OPIE_NEW_ALLOC 157config OPIE_NEW_ALLOC
154 boolean "Use malloc and free for the implementation" 158 boolean "Use malloc and free for the implementation"
155 default y if TARGET_RAMSES || TARGET_IPAQ || TARGET_SIMPAD || TARGET_SHARP 159 default y if TARGET_RAMSES || TARGET_IPAQ || TARGET_SIMPAD || TARGET_SHARP
156 default n if ! (TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP) 160 default n if ! (TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP)
157 161
158config OPIE_TASKBAR_LOCK_KEY_STATE 162config OPIE_TASKBAR_LOCK_KEY_STATE
159 boolean "Have a KeyLock state indicator on the taskbar" 163 boolean "Have a KeyLock state indicator on the taskbar"
160 default y if TARGET_SHARP 164 default y if TARGET_SHARP
161 default n if !TARGET_SHARP 165 default n if !TARGET_SHARP
162 166
163config LIBQPE_WITHROHFEEDBACK 167config LIBQPE_WITHROHFEEDBACK
164 boolean "Build libqpe with Right-On-Hold feedback" 168 boolean "Build libqpe with Right-On-Hold feedback"
165 default y 169 default y
166 170
167config OPIE_NO_SOUND_PCM_READ_BITS 171config OPIE_NO_SOUND_PCM_READ_BITS
168 boolean "There is not a pcm_read_bits io control" 172 boolean "There is not a pcm_read_bits io control"
169 default y if TARGET_SHARP 173 default y if TARGET_SHARP
170 default n if ! TARGET_SHARP 174 default n if ! TARGET_SHARP
171endmenu 175endmenu
172 176
173menu "Dependencies" 177menu "Dependencies"
174 source dependencies.in 178 source dependencies.in
175endmenu 179endmenu
176 180
177menu "Base" 181menu "Base"
178 choice 182 choice
179 prompt "Qpe Library Selection" 183 prompt "Qpe Library Selection"
180 default LIBQPE 184 default LIBQPE
181 source library/config.in 185 source library/config.in
182 source x11/config.in 186 source x11/config.in
183 endchoice 187 endchoice
184 source libopie2/config.in 188 source libopie2/config.in
185 source libqtaux/config.in 189 source libqtaux/config.in
186 source rsync/config.in 190 source rsync/config.in
187 source core/opie-login/config.in 191 source core/opie-login/config.in
188 source core/opiealarm/config.in 192 source core/opiealarm/config.in
189 source core/tools/quicklauncher/config.in 193 source core/tools/quicklauncher/config.in
190 source core/launcher/config.in 194 source core/launcher/config.in
191 source core/symlinker/config.in 195 source core/symlinker/config.in
192endmenu 196endmenu
193 197
194comment "" 198comment ""
195 199
196menu "Applets" 200menu "Applets"
197 source core/applets/config.in 201 source core/applets/config.in
198 source noncore/applets/config.in 202 source noncore/applets/config.in
199endmenu 203endmenu
200 204
201menu "Apps" 205menu "Apps"
202 source core/apps/config.in 206 source core/apps/config.in
203 source noncore/apps/config.in 207 source noncore/apps/config.in
204endmenu 208endmenu
205 209
206menu "Communications and Networking" 210menu "Communications and Networking"
207 source noncore/comm/config.in 211 source noncore/comm/config.in
208 source noncore/net/config.in 212 source noncore/net/config.in
209endmenu 213endmenu