summaryrefslogtreecommitdiff
path: root/config.in
Unidiff
Diffstat (limited to 'config.in') (more/less context) (ignore whitespace changes)
-rw-r--r--config.in1
1 files changed, 1 insertions, 0 deletions
diff --git a/config.in b/config.in
index 20fcf56..b3a60bb 100644
--- a/config.in
+++ b/config.in
@@ -7,188 +7,189 @@ choice
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
33endchoice 33endchoice
34 34
35config OPTIMIZE 35config OPTIMIZE
36 boolean "Use optimizations" 36 boolean "Use optimizations"
37 default "y" if ! TARGET_X86 37 default "y" if ! TARGET_X86
38 38
39config DEBUG 39config DEBUG
40 boolean "Enable debug builds" 40 boolean "Enable debug builds"
41 default n 41 default n
42config RELEASE 42config RELEASE
43 bool 43 bool
44 default y 44 default y
45 depends !DEBUG 45 depends !DEBUG
46 46
47config QUICK_LAUNCH 47config QUICK_LAUNCH
48 boolean "Enable Quick Launch" 48 boolean "Enable Quick Launch"
49 default n 49 default n
50 50
51config OPIE_NO_OVERRIDE_QT 51config OPIE_NO_OVERRIDE_QT
52 boolean "Build Opie against an unpatched version of Qt" 52 boolean "Build Opie against an unpatched version of Qt"
53 default n 53 default n
54 54
55config SPECFILE 55config SPECFILE
56 string 56 string
57 default "qws/linux-generic-g++" if TARGET_X86 && (! X11) 57 default "qws/linux-generic-g++" if TARGET_X86 && (! X11)
58 default "linux-g++" if TARGET_X86 && X11 58 default "linux-g++" if TARGET_X86 && X11
59 default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11) 59 default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11)
60 default "linux-g++" if TARGET_SHARP && X11 60 default "linux-g++" if TARGET_SHARP && X11
61 default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) 61 default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11)
62 default "linux-g++" if TARGET_IPAQ && X11 62 default "linux-g++" if TARGET_IPAQ && X11
63 default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11) 63 default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11)
64 default "linux-g++" if TARGET_RAMSES && X11 64 default "linux-g++" if TARGET_RAMSES && X11
65 default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11) 65 default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11)
66 default "linux-g++" if TARGET_SIMPAD && X11 66 default "linux-g++" if TARGET_SIMPAD && X11
67 default "qws/linux-yopy-g++" if TARGET_YOPY && (! X11) 67 default "qws/linux-yopy-g++" if TARGET_YOPY && (! X11)
68 default "qws/macx-generic-g++" if TARGET_MACOSX && (! X11) 68 default "qws/macx-generic-g++" if TARGET_MACOSX && (! X11)
69 69
70config CUSTOMFILE 70config CUSTOMFILE
71 string 71 string
72 default "custom-ipaq.h" if TARGET_IPAQ 72 default "custom-ipaq.h" if TARGET_IPAQ
73 default "custom-sharp.h" if TARGET_SHARP 73 default "custom-sharp.h" if TARGET_SHARP
74 default "custom-ramses.h" if TARGET_RAMSES 74 default "custom-ramses.h" if TARGET_RAMSES
75 default "custom-ipaq.h" if TARGET_SIMPAD 75 default "custom-ipaq.h" if TARGET_SIMPAD
76 default "custom-yopy.h" if TARGET_YOPY 76 default "custom-yopy.h" if TARGET_YOPY
77 77
78config OPTIMIZATIONS 78config OPTIMIZATIONS
79 string "Optimization flags" 79 string "Optimization flags"
80 depends OPTIMIZE 80 depends OPTIMIZE
81 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ 81 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_YOPY 82 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_SHARP 83 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_RAMSES 84 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_SIMPAD 85 default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SIMPAD
86 86
87config EXPERIMENTAL 87config EXPERIMENTAL
88 bool "Prompt for development and/or incomplete items" 88 bool "Prompt for development and/or incomplete items"
89 default y 89 default y
90 90
91endmenu 91endmenu
92 92
93menu "Base" 93menu "Base"
94 choice 94 choice
95 prompt "Qpe Library Selection" 95 prompt "Qpe Library Selection"
96 default LIBQPE 96 default LIBQPE
97 source library/config.in 97 source library/config.in
98 source x11/config.in 98 source x11/config.in
99 endchoice 99 endchoice
100 source libopie/config.in 100 source libopie/config.in
101 source core/opie-login/config.in 101 source core/opie-login/config.in
102 source core/opiealarm/config.in 102 source core/opiealarm/config.in
103 source core/tools/quicklauncher/config.in
103 source core/launcher/config.in 104 source core/launcher/config.in
104 source core/qws/config.in 105 source core/qws/config.in
105endmenu 106endmenu
106 107
107comment "" 108comment ""
108 109
109menu "Applets" 110menu "Applets"
110 source core/applets/config.in 111 source core/applets/config.in
111 source noncore/applets/config.in 112 source noncore/applets/config.in
112endmenu 113endmenu
113 114
114menu "Apps" 115menu "Apps"
115 source core/apps/config.in 116 source core/apps/config.in
116 source noncore/apps/config.in 117 source noncore/apps/config.in
117endmenu 118endmenu
118 119
119menu "Communications and Networking" 120menu "Communications and Networking"
120 source noncore/comm/config.in 121 source noncore/comm/config.in
121 source noncore/mail/config.in 122 source noncore/mail/config.in
122 source noncore/net/config.in 123 source noncore/net/config.in
123endmenu 124endmenu
124 125
125menu "Games" 126menu "Games"
126 source noncore/games/config.in 127 source noncore/games/config.in
127endmenu 128endmenu
128 129
129menu "Graphics and Multimedia" 130menu "Graphics and Multimedia"
130 source freetype/config.in 131 source freetype/config.in
131 source noncore/graphics/config.in 132 source noncore/graphics/config.in
132 source core/multimedia/config.in 133 source core/multimedia/config.in
133 source noncore/multimedia/config.in 134 source noncore/multimedia/config.in
134endmenu 135endmenu
135 136
136menu "Input methods" 137menu "Input methods"
137 source inputmethods/config.in 138 source inputmethods/config.in
138endmenu 139endmenu
139 140
140menu "Pim" 141menu "Pim"
141 source core/pim/config.in 142 source core/pim/config.in
142 menu "Today Plugins" 143 menu "Today Plugins"
143 source noncore/todayplugins/config.in 144 source noncore/todayplugins/config.in
144 source core/pim/today/plugins/config.in 145 source core/pim/today/plugins/config.in
145 endmenu 146 endmenu
146endmenu 147endmenu
147 148
148menu "Settings" 149menu "Settings"
149 source core/settings/config.in 150 source core/settings/config.in
150 source noncore/settings/config.in 151 source noncore/settings/config.in
151endmenu 152endmenu
152 153
153menu "Theming" 154menu "Theming"
154 source noncore/decorations/config.in 155 source noncore/decorations/config.in
155 source noncore/styles/config.in 156 source noncore/styles/config.in
156endmenu 157endmenu
157 158
158menu "Tools" 159menu "Tools"
159 source noncore/tools/config.in 160 source noncore/tools/config.in
160endmenu 161endmenu
161 162
162menu "Development" 163menu "Development"
163 source development/keyview/config.in 164 source development/keyview/config.in
164 #source development/debugviewer/config.in 165 #source development/debugviewer/config.in
165endmenu 166endmenu
166 167
167menu "Examples" 168menu "Examples"
168 config EXAMPLES 169 config EXAMPLES
169 boolean "Compile Example Application" 170 boolean "Compile Example Application"
170 source examples/config.in 171 source examples/config.in
171endmenu 172endmenu
172 173
173comment "" 174comment ""
174 depends on EXPERIMENTAL 175 depends on EXPERIMENTAL
175menu "Experimental" 176menu "Experimental"
176 depends on EXPERIMENTAL 177 depends on EXPERIMENTAL
177 source libopie2/config.in 178 source libopie2/config.in
178 179
179 config SQL_PIM_BACKEND 180 config SQL_PIM_BACKEND
180 bool "Add SQL-Backend support (experimental)" 181 bool "Add SQL-Backend support (experimental)"
181 default n 182 default n
182 help 183 help
183 This adds the SQL-Support, using SQLite. Which database is used 184 This adds the SQL-Support, using SQLite. Which database is used
184 by the backends is defined by the file "pimaccess.conf" in the 185 by the backends is defined by the file "pimaccess.conf" in the
185 directory "Settings". 186 directory "Settings".
186 There currently do exist to groups "[contact]" and "[todo]". You can 187 There currently do exist to groups "[contact]" and "[todo]". You can
187 select the used backend by the variable "usebackend=<type>", where 188 select the used backend by the variable "usebackend=<type>", where
188 <type> is "sql" or "xml". "xml" is the default ! 189 <type> is "sql" or "xml". "xml" is the default !
189 Important: The SQLite-library "libsqlite.so" must be installed ! 190 Important: The SQLite-library "libsqlite.so" must be installed !
190 depends ( LIBOPIE2DB ) 191 depends ( LIBOPIE2DB )
191 192
192 comment "SQL-Support needs libopie2db!" 193 comment "SQL-Support needs libopie2db!"
193 depends !( LIBOPIE2DB ) 194 depends !( LIBOPIE2DB )
194endmenu 195endmenu