author | wimpie <wimpie> | 2004-04-02 18:38:20 (UTC) |
---|---|---|
committer | wimpie <wimpie> | 2004-04-02 18:38:20 (UTC) |
commit | 38f1377597f88d7bb381b750df53754d0f5b2924 (patch) (unidiff) | |
tree | 52d6ca22924f17947e85fb2aa09386420f9bb092 | |
parent | 5f988daf3ef7c7f5370eb15a159655d0289707cb (diff) | |
download | opie-38f1377597f88d7bb381b750df53754d0f5b2924.zip opie-38f1377597f88d7bb381b750df53754d0f5b2924.tar.gz opie-38f1377597f88d7bb381b750df53754d0f5b2924.tar.bz2 |
THreaded support
-rw-r--r-- | config.in | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -15,48 +15,53 @@ choice | |||
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 | ||
33 | endchoice | 33 | endchoice |
34 | 34 | ||
35 | config OPTIMIZE | 35 | config OPTIMIZE |
36 | boolean "Use optimizations" | 36 | boolean "Use optimizations" |
37 | default "y" if ! TARGET_X86 | 37 | default "y" if ! TARGET_X86 |
38 | 38 | ||
39 | # added for threaded compile | ||
40 | config THREADED | ||
41 | boolean "Enable threaded build" | ||
42 | default "n" | ||
43 | |||
39 | config DEBUG | 44 | config DEBUG |
40 | boolean "Enable debug builds" | 45 | boolean "Enable debug builds" |
41 | default n | 46 | default n |
42 | config RELEASE | 47 | config RELEASE |
43 | bool | 48 | bool |
44 | default y | 49 | default y |
45 | depends !DEBUG | 50 | depends !DEBUG |
46 | 51 | ||
47 | config QUICK_LAUNCH | 52 | config QUICK_LAUNCH |
48 | boolean "Enable Quick Launch" | 53 | boolean "Enable Quick Launch" |
49 | default n | 54 | default n |
50 | 55 | ||
51 | config QUICKLAUNCH_PATH | 56 | config QUICKLAUNCH_PATH |
52 | string "Path to quicklauncher" | 57 | string "Path to quicklauncher" |
53 | default "./quicklauncher" if TARGET_X86 | 58 | default "./quicklauncher" if TARGET_X86 |
54 | default "/opt/QtPalmtop/bin/quicklauncher" if ! TARGET_X86 | 59 | default "/opt/QtPalmtop/bin/quicklauncher" if ! TARGET_X86 |
55 | 60 | ||
56 | config SPECFILE | 61 | config SPECFILE |
57 | string | 62 | string |
58 | default "qws/linux-generic-g++" if TARGET_X86 && (! X11) | 63 | default "qws/linux-generic-g++" if TARGET_X86 && (! X11) |
59 | default "linux-g++" if TARGET_X86 && X11 | 64 | default "linux-g++" if TARGET_X86 && X11 |
60 | default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11) | 65 | default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11) |
61 | default "linux-g++" if TARGET_SHARP && X11 | 66 | default "linux-g++" if TARGET_SHARP && X11 |
62 | default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) | 67 | default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) |