author | eilers <eilers> | 2003-11-03 16:52:18 (UTC) |
---|---|---|
committer | eilers <eilers> | 2003-11-03 16:52:18 (UTC) |
commit | d34dc773591a2d467c68875a68a671d6a809f861 (patch) (unidiff) | |
tree | b57e5ae15c51e3d87ca95d57aedfd1ca3db57bfe /config.in | |
parent | ce84f2d8bdd65c438821f0457cdad6bbbfa73380 (diff) | |
download | opie-d34dc773591a2d467c68875a68a671d6a809f861.zip opie-d34dc773591a2d467c68875a68a671d6a809f861.tar.gz opie-d34dc773591a2d467c68875a68a671d6a809f861.tar.bz2 |
Porting Opie to MacOS-X.
The base system and all platform independent applications and platforms
should work.
Please see $OPIEDIR/development/macosx for details
-rw-r--r-- | config.in | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1,190 +1,194 @@ | |||
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 | ||
16 | boolean "Mac OS X (DARWIN)" | ||
17 | |||
15 | config TARGET_SHARP | 18 | config TARGET_SHARP |
16 | boolean "Sharp Zaurus" | 19 | boolean "Sharp Zaurus" |
17 | 20 | ||
18 | config TARGET_IPAQ | 21 | config TARGET_IPAQ |
19 | boolean "iPAQ" | 22 | boolean "iPAQ" |
20 | 23 | ||
21 | config TARGET_RAMSES | 24 | config TARGET_RAMSES |
22 | boolean "Ramses" | 25 | boolean "Ramses" |
23 | 26 | ||
24 | config TARGET_SIMPAD | 27 | config TARGET_SIMPAD |
25 | boolean "SIMpad" | 28 | boolean "SIMpad" |
26 | 29 | ||
27 | config TARGET_YOPY | 30 | config TARGET_YOPY |
28 | boolean "Yopy 3500/3700" | 31 | boolean "Yopy 3500/3700" |
29 | 32 | ||
30 | endchoice | 33 | endchoice |
31 | 34 | ||
32 | config OPTIMIZE | 35 | config OPTIMIZE |
33 | boolean "Use optimizations" | 36 | boolean "Use optimizations" |
34 | default "y" if ! TARGET_X86 | 37 | default "y" if ! TARGET_X86 |
35 | 38 | ||
36 | config DEBUG | 39 | config DEBUG |
37 | boolean "Enable debug builds" | 40 | boolean "Enable debug builds" |
38 | default n | 41 | default n |
39 | config RELEASE | 42 | config RELEASE |
40 | bool | 43 | bool |
41 | default y | 44 | default y |
42 | depends !DEBUG | 45 | depends !DEBUG |
43 | 46 | ||
44 | config QUICK_LAUNCH | 47 | config QUICK_LAUNCH |
45 | boolean "Enable Quick Launch" | 48 | boolean "Enable Quick Launch" |
46 | default n | 49 | default n |
47 | 50 | ||
48 | config OPIE_NO_OVERRIDE_QT | 51 | config OPIE_NO_OVERRIDE_QT |
49 | boolean "Build Opie against an unpatched version of Qt" | 52 | boolean "Build Opie against an unpatched version of Qt" |
50 | default n | 53 | default n |
51 | 54 | ||
52 | config SPECFILE | 55 | config SPECFILE |
53 | string | 56 | string |
54 | default "qws/linux-generic-g++" if TARGET_X86 && (! X11) | 57 | default "qws/linux-generic-g++" if TARGET_X86 && (! X11) |
55 | default "linux-g++" if TARGET_X86 && X11 | 58 | default "linux-g++" if TARGET_X86 && X11 |
56 | default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11) | 59 | default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11) |
57 | default "linux-g++" if TARGET_SHARP && X11 | 60 | default "linux-g++" if TARGET_SHARP && X11 |
58 | default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) | 61 | default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) |
59 | default "linux-g++" if TARGET_IPAQ && X11 | 62 | default "linux-g++" if TARGET_IPAQ && X11 |
60 | default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11) | 63 | default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11) |
61 | default "linux-g++" if TARGET_RAMSES && X11 | 64 | default "linux-g++" if TARGET_RAMSES && X11 |
62 | default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11) | 65 | default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11) |
63 | default "linux-g++" if TARGET_SIMPAD && X11 | 66 | default "linux-g++" if TARGET_SIMPAD && X11 |
64 | 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) | ||
65 | 69 | ||
66 | config CUSTOMFILE | 70 | config CUSTOMFILE |
67 | string | 71 | string |
68 | default "custom-ipaq.h" if TARGET_IPAQ | 72 | default "custom-ipaq.h" if TARGET_IPAQ |
69 | default "custom-sharp.h" if TARGET_SHARP | 73 | default "custom-sharp.h" if TARGET_SHARP |
70 | default "custom-ramses.h" if TARGET_RAMSES | 74 | default "custom-ramses.h" if TARGET_RAMSES |
71 | default "custom-ipaq.h" if TARGET_SIMPAD | 75 | default "custom-ipaq.h" if TARGET_SIMPAD |
72 | default "custom-yopy.h" if TARGET_YOPY | 76 | default "custom-yopy.h" if TARGET_YOPY |
73 | 77 | ||
74 | config OPTIMIZATIONS | 78 | config OPTIMIZATIONS |
75 | string "Optimization flags" | 79 | string "Optimization flags" |
76 | depends OPTIMIZE | 80 | depends OPTIMIZE |
77 | 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 |
78 | 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 |
79 | 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 |
80 | 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 |
81 | 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 |
82 | 86 | ||
83 | config EXPERIMENTAL | 87 | config EXPERIMENTAL |
84 | bool "Prompt for development and/or incomplete items" | 88 | bool "Prompt for development and/or incomplete items" |
85 | default y | 89 | default y |
86 | 90 | ||
87 | endmenu | 91 | endmenu |
88 | 92 | ||
89 | menu "Base" | 93 | menu "Base" |
90 | choice | 94 | choice |
91 | prompt "Qpe Library Selection" | 95 | prompt "Qpe Library Selection" |
92 | default LIBQPE | 96 | default LIBQPE |
93 | source library/config.in | 97 | source library/config.in |
94 | source x11/config.in | 98 | source x11/config.in |
95 | endchoice | 99 | endchoice |
96 | source libopie/config.in | 100 | source libopie/config.in |
97 | source core/opie-login/config.in | 101 | source core/opie-login/config.in |
98 | source core/opiealarm/config.in | 102 | source core/opiealarm/config.in |
99 | source core/launcher/config.in | 103 | source core/launcher/config.in |
100 | source core/qws/config.in | 104 | source core/qws/config.in |
101 | endmenu | 105 | endmenu |
102 | 106 | ||
103 | comment "" | 107 | comment "" |
104 | 108 | ||
105 | menu "Applets" | 109 | menu "Applets" |
106 | source core/applets/config.in | 110 | source core/applets/config.in |
107 | source noncore/applets/config.in | 111 | source noncore/applets/config.in |
108 | endmenu | 112 | endmenu |
109 | 113 | ||
110 | menu "Apps" | 114 | menu "Apps" |
111 | source core/apps/config.in | 115 | source core/apps/config.in |
112 | source noncore/apps/config.in | 116 | source noncore/apps/config.in |
113 | endmenu | 117 | endmenu |
114 | 118 | ||
115 | menu "Communications and Networking" | 119 | menu "Communications and Networking" |
116 | source noncore/comm/config.in | 120 | source noncore/comm/config.in |
117 | source noncore/mail/config.in | 121 | source noncore/mail/config.in |
118 | source noncore/net/config.in | 122 | source noncore/net/config.in |
119 | endmenu | 123 | endmenu |
120 | 124 | ||
121 | menu "Games" | 125 | menu "Games" |
122 | source noncore/games/config.in | 126 | source noncore/games/config.in |
123 | endmenu | 127 | endmenu |
124 | 128 | ||
125 | menu "Graphics and Multimedia" | 129 | menu "Graphics and Multimedia" |
126 | source freetype/config.in | 130 | source freetype/config.in |
127 | source noncore/graphics/config.in | 131 | source noncore/graphics/config.in |
128 | source core/multimedia/config.in | 132 | source core/multimedia/config.in |
129 | source noncore/multimedia/config.in | 133 | source noncore/multimedia/config.in |
130 | endmenu | 134 | endmenu |
131 | 135 | ||
132 | menu "Input methods" | 136 | menu "Input methods" |
133 | source inputmethods/config.in | 137 | source inputmethods/config.in |
134 | endmenu | 138 | endmenu |
135 | 139 | ||
136 | menu "Pim" | 140 | menu "Pim" |
137 | source core/pim/config.in | 141 | source core/pim/config.in |
138 | menu "Today Plugins" | 142 | menu "Today Plugins" |
139 | source noncore/todayplugins/config.in | 143 | source noncore/todayplugins/config.in |
140 | source core/pim/today/plugins/config.in | 144 | source core/pim/today/plugins/config.in |
141 | endmenu | 145 | endmenu |
142 | endmenu | 146 | endmenu |
143 | 147 | ||
144 | menu "Settings" | 148 | menu "Settings" |
145 | source core/settings/config.in | 149 | source core/settings/config.in |
146 | source noncore/settings/config.in | 150 | source noncore/settings/config.in |
147 | endmenu | 151 | endmenu |
148 | 152 | ||
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 | 157 | ||
154 | menu "Tools" | 158 | menu "Tools" |
155 | source noncore/tools/config.in | 159 | source noncore/tools/config.in |
156 | endmenu | 160 | endmenu |
157 | 161 | ||
158 | menu "Development" | 162 | menu "Development" |
159 | source development/keyview/config.in | 163 | source development/keyview/config.in |
160 | #source development/debugviewer/config.in | 164 | #source development/debugviewer/config.in |
161 | endmenu | 165 | endmenu |
162 | 166 | ||
163 | menu "Examples" | 167 | menu "Examples" |
164 | config EXAMPLES | 168 | config EXAMPLES |
165 | boolean "Compile Example Application" | 169 | boolean "Compile Example Application" |
166 | source examples/config.in | 170 | source examples/config.in |
167 | endmenu | 171 | endmenu |
168 | 172 | ||
169 | comment "" | 173 | comment "" |
170 | depends on EXPERIMENTAL | 174 | depends on EXPERIMENTAL |
171 | menu "Experimental" | 175 | menu "Experimental" |
172 | depends on EXPERIMENTAL | 176 | depends on EXPERIMENTAL |
173 | source libopie2/config.in | 177 | source libopie2/config.in |
174 | 178 | ||
175 | config SQL_PIM_BACKEND | 179 | config SQL_PIM_BACKEND |
176 | bool "Add SQL-Backend support (experimental)" | 180 | bool "Add SQL-Backend support (experimental)" |
177 | default n | 181 | default n |
178 | help | 182 | help |
179 | This adds the SQL-Support, using SQLite. Which database is used | 183 | This adds the SQL-Support, using SQLite. Which database is used |
180 | by the backends is defined by the file "pimaccess.conf" in the | 184 | by the backends is defined by the file "pimaccess.conf" in the |
181 | directory "Settings". | 185 | directory "Settings". |
182 | There currently do exist to groups "[contact]" and "[todo]". You can | 186 | There currently do exist to groups "[contact]" and "[todo]". You can |
183 | select the used backend by the variable "usebackend=<type>", where | 187 | select the used backend by the variable "usebackend=<type>", where |
184 | <type> is "sql" or "xml". "xml" is the default ! | 188 | <type> is "sql" or "xml". "xml" is the default ! |
185 | Important: The SQLite-library "libsqlite.so" must be installed ! | 189 | Important: The SQLite-library "libsqlite.so" must be installed ! |
186 | depends ( LIBOPIE2DB ) | 190 | depends ( LIBOPIE2DB ) |
187 | 191 | ||
188 | comment "SQL-Support needs libopie2db!" | 192 | comment "SQL-Support needs libopie2db!" |
189 | depends !( LIBOPIE2DB ) | 193 | depends !( LIBOPIE2DB ) |
190 | endmenu | 194 | endmenu |