author | mickeyl <mickeyl> | 2004-04-06 11:50:55 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-04-06 11:50:55 (UTC) |
commit | d3d2fbab3991b637f50217bbe966484f583fbb19 (patch) (unidiff) | |
tree | 3c41060ec050dae7df7261f44ca4507c8d965802 | |
parent | cbedf80c65fe86d0ca901a9f5f4519564ffdc90a (diff) | |
download | opie-d3d2fbab3991b637f50217bbe966484f583fbb19.zip opie-d3d2fbab3991b637f50217bbe966484f583fbb19.tar.gz opie-d3d2fbab3991b637f50217bbe966484f583fbb19.tar.bz2 |
specifying the wireless extension version is now optional thanks
to libopienet2 gathering the WE version automatically
you can still override it if needed
-rw-r--r-- | Rules.make | 2 | ||||
-rw-r--r-- | config.in | 5 |
2 files changed, 7 insertions, 0 deletions
@@ -1,265 +1,267 @@ | |||
1 | .phony: force | 1 | .phony: force |
2 | force: | 2 | force: |
3 | 3 | ||
4 | $(configs) : | 4 | $(configs) : |
5 | $(call makecfg,$@) | 5 | $(call makecfg,$@) |
6 | 6 | ||
7 | $(TOPDIR)/gen.pro : $(TOPDIR)/.config | 7 | $(TOPDIR)/gen.pro : $(TOPDIR)/.config |
8 | echo > $@ | 8 | echo > $@ |
9 | # added for threaded version | 9 | # added for threaded version |
10 | ifneq ($(CONFIG_THREADED),) | 10 | ifneq ($(CONFIG_THREADED),) |
11 | echo CONFIG += thread >> $@ | 11 | echo CONFIG += thread >> $@ |
12 | else | 12 | else |
13 | echo CONFIG -= thread >> $@ | 13 | echo CONFIG -= thread >> $@ |
14 | endif | 14 | endif |
15 | ifneq ($(CONFIG_DEBUG),) | 15 | ifneq ($(CONFIG_DEBUG),) |
16 | echo CONFIG += debug >> $@ | 16 | echo CONFIG += debug >> $@ |
17 | echo CONFIG -= release >> $@ | 17 | echo CONFIG -= release >> $@ |
18 | echo DEFINES += "QT_COMPONENT_DEBUG=2" >> $@ | 18 | echo DEFINES += "QT_COMPONENT_DEBUG=2" >> $@ |
19 | echo DEFINES += QT_DEBUG >> $@ | 19 | echo DEFINES += QT_DEBUG >> $@ |
20 | else | 20 | else |
21 | echo CONFIG -= debug >> $@ | 21 | echo CONFIG -= debug >> $@ |
22 | echo CONFIG += release >> $@ | 22 | echo CONFIG += release >> $@ |
23 | echo DEFINES += "OPIE_NO_DEBUG" >> $@ | 23 | echo DEFINES += "OPIE_NO_DEBUG" >> $@ |
24 | endif | 24 | endif |
25 | 25 | ||
26 | ifeq ($(filter 3.%,$(QTE_VERSION)),) # not qt3 | 26 | ifeq ($(filter 3.%,$(QTE_VERSION)),) # not qt3 |
27 | echo CONFIG -= qt3 >> $@ | 27 | echo CONFIG -= qt3 >> $@ |
28 | else | 28 | else |
29 | echo CONFIG += qt3 >> $@ | 29 | echo CONFIG += qt3 >> $@ |
30 | endif | 30 | endif |
31 | ifneq ($(CONFIG_QUICK_LAUNCH),) | 31 | ifneq ($(CONFIG_QUICK_LAUNCH),) |
32 | echo contains\( CONFIG, quick-app \) \{ >> $@ | 32 | echo contains\( CONFIG, quick-app \) \{ >> $@ |
33 | echo CONFIG -= quick-app >> $@ | 33 | echo CONFIG -= quick-app >> $@ |
34 | echo CONFIG += quick-app-lib >> $@ | 34 | echo CONFIG += quick-app-lib >> $@ |
35 | echo QUICKLAUNCH_PATH = $(CONFIG_QUICKLAUNCH_PATH) >> $@ | 35 | echo QUICKLAUNCH_PATH = $(CONFIG_QUICKLAUNCH_PATH) >> $@ |
36 | echo \} >> $@ | 36 | echo \} >> $@ |
37 | else | 37 | else |
38 | echo contains\( CONFIG, quick-app \) \{ >> $@ | 38 | echo contains\( CONFIG, quick-app \) \{ >> $@ |
39 | echo CONFIG -= quick-app >> $@ | 39 | echo CONFIG -= quick-app >> $@ |
40 | echo CONFIG += quick-app-bin >> $@ | 40 | echo CONFIG += quick-app-bin >> $@ |
41 | echo \} >> $@ | 41 | echo \} >> $@ |
42 | endif | 42 | endif |
43 | ifeq ($(CONFIG_SQL_PIM_BACKEND),y) | 43 | ifeq ($(CONFIG_SQL_PIM_BACKEND),y) |
44 | echo ENABLE_SQL_PIM_BACKEND=$(CONFIG_SQL_PIM_BACKEND) >> $@ | 44 | echo ENABLE_SQL_PIM_BACKEND=$(CONFIG_SQL_PIM_BACKEND) >> $@ |
45 | else | 45 | else |
46 | echo ENABLE_SQL_PIM_BACKEND=n >> $@ | 46 | echo ENABLE_SQL_PIM_BACKEND=n >> $@ |
47 | endif | 47 | endif |
48 | ifeq ($(CONFIG_OPIE_NO_OVERRIDE_QT),y) | 48 | ifeq ($(CONFIG_OPIE_NO_OVERRIDE_QT),y) |
49 | echo CONFIG += no-override >> $@ | 49 | echo CONFIG += no-override >> $@ |
50 | endif | 50 | endif |
51 | ifeq ($(CONFIG_OPIE_NO_BUILTIN_SHUTDOWN),y) | 51 | ifeq ($(CONFIG_OPIE_NO_BUILTIN_SHUTDOWN),y) |
52 | echo DEFINES += OPIE_NO_BUILTIN_SHUTDOWN >> $@ | 52 | echo DEFINES += OPIE_NO_BUILTIN_SHUTDOWN >> $@ |
53 | endif | 53 | endif |
54 | ifeq ($(CONFIG_OPIE_NO_BUILTIN_CALIBRATE),y) | 54 | ifeq ($(CONFIG_OPIE_NO_BUILTIN_CALIBRATE),y) |
55 | echo DEFINES += OPIE_NO_BUILTIN_CALIBRATE >> $@ | 55 | echo DEFINES += OPIE_NO_BUILTIN_CALIBRATE >> $@ |
56 | endif | 56 | endif |
57 | ifeq ($(CONFIG_USE_REALTIME_AUDIO_THREAD),y) | 57 | ifeq ($(CONFIG_USE_REALTIME_AUDIO_THREAD),y) |
58 | echo DEFINES += USE_REALTIME_AUDIO_THREAD >> $@ | 58 | echo DEFINES += USE_REALTIME_AUDIO_THREAD >> $@ |
59 | endif | 59 | endif |
60 | ifeq ($(CONFIG_QT_QWS_ALLOW_CLOCK),y) | 60 | ifeq ($(CONFIG_QT_QWS_ALLOW_CLOCK),y) |
61 | echo DEFINES += QT_QWS_ALLOW_OVERCLOCK >> $@ | 61 | echo DEFINES += QT_QWS_ALLOW_OVERCLOCK >> $@ |
62 | endif | 62 | endif |
63 | ifeq ($(CONFIG_OPIE_HIGH_RES_SMALL_PHY),y) | 63 | ifeq ($(CONFIG_OPIE_HIGH_RES_SMALL_PHY),y) |
64 | echo DEFINES += OPIE_HIGH_RES_SMALL_PHY >> $@ | 64 | echo DEFINES += OPIE_HIGH_RES_SMALL_PHY >> $@ |
65 | endif | 65 | endif |
66 | ifeq ($(CONFIG_OPIE_NEW_ALLOC),y) | 66 | ifeq ($(CONFIG_OPIE_NEW_ALLOC),y) |
67 | echo DEFINES += OPIE_NEW_MALLOC >> $@ | 67 | echo DEFINES += OPIE_NEW_MALLOC >> $@ |
68 | endif | 68 | endif |
69 | ifeq ($(CONFIG_OPIE_NO_SOUND_PCM_READ_BITS),y) | 69 | ifeq ($(CONFIG_OPIE_NO_SOUND_PCM_READ_BITS),y) |
70 | echo DEFINES += OPIE_NO_SOUND_PCM_READ_BITS >> $@ | 70 | echo DEFINES += OPIE_NO_SOUND_PCM_READ_BITS >> $@ |
71 | endif | 71 | endif |
72 | echo DEFINES += OPIE_SOUND_FRAGMENT_SHIFT=$(CONFIG_OPIE_SOUND_FRAGMENT_SHIFT) >> $@ | 72 | echo DEFINES += OPIE_SOUND_FRAGMENT_SHIFT=$(CONFIG_OPIE_SOUND_FRAGMENT_SHIFT) >> $@ |
73 | ifeq ($(CONFIG_OPIE_WE_VERSION_OVERRIDE),y) | ||
73 | echo DEFINES += OPIE_WE_VERSION=$(CONFIG_OPIE_WE_VERSION) >> $@ | 74 | echo DEFINES += OPIE_WE_VERSION=$(CONFIG_OPIE_WE_VERSION) >> $@ |
75 | endif | ||
74 | $(TOPDIR)/.depends : $(shell if [ -e $(TOPDIR)/config.in ]\; then echo $(TOPDIR)/config.in\; fi\;) $(TOPDIR)/.config $(TOPDIR)/packages | 76 | $(TOPDIR)/.depends : $(shell if [ -e $(TOPDIR)/config.in ]\; then echo $(TOPDIR)/config.in\; fi\;) $(TOPDIR)/.config $(TOPDIR)/packages |
75 | @echo Generating dependency information... | 77 | @echo Generating dependency information... |
76 | # add to subdir-y, and add descend rules | 78 | # add to subdir-y, and add descend rules |
77 | @cat $(TOPDIR)/packages | grep -v '^#' | \ | 79 | @cat $(TOPDIR)/packages | grep -v '^#' | \ |
78 | awk '{print \ | 80 | awk '{print \ |
79 | ".PHONY : " $$2 "\n" \ | 81 | ".PHONY : " $$2 "\n" \ |
80 | "subdir-$$(" $$1 ") += " $$2 "\n\n"; \ | 82 | "subdir-$$(" $$1 ") += " $$2 "\n\n"; \ |
81 | print $$2 " : " $$2 "/Makefile\n\t$$(call descend,$$@,$(filter-out $$@,$$(filter-out $$@,$$(MAKECMDGOALS))))\n"; }' > $(TOPDIR)/.depends | 83 | print $$2 " : " $$2 "/Makefile\n\t$$(call descend,$$@,$(filter-out $$@,$$(filter-out $$@,$$(MAKECMDGOALS))))\n"; }' > $(TOPDIR)/.depends |
82 | cat $(TOPDIR)/packages | grep -v '^#' | \ | 84 | cat $(TOPDIR)/packages | grep -v '^#' | \ |
83 | perl -ne '($$cfg, $$dir, $$pro) = $$_ =~ /^(\S+)\s+(\S+)\s+(\S+)/; if ( -e "$$dir/$$pro" ) { print "$$dir/Makefile : $$dir/$$pro \$$(QMAKE) \$$(OPIEDIR)/gen.pro \$$(OPIEDIR)/.config\n\t\$$(call makefilegen,\$$@)\n\n"; }' \ | 85 | perl -ne '($$cfg, $$dir, $$pro) = $$_ =~ /^(\S+)\s+(\S+)\s+(\S+)/; if ( -e "$$dir/$$pro" ) { print "$$dir/Makefile : $$dir/$$pro \$$(QMAKE) \$$(OPIEDIR)/gen.pro \$$(OPIEDIR)/.config\n\t\$$(call makefilegen,\$$@)\n\n"; }' \ |
84 | >> $(TOPDIR)/.depends | 86 | >> $(TOPDIR)/.depends |
85 | # interpackage dependency generation | 87 | # interpackage dependency generation |
86 | @cat $(TOPDIR)/packages | \ | 88 | @cat $(TOPDIR)/packages | \ |
87 | $(TOPDIR)/scripts/deps.pl >> $(TOPDIR)/.depends | 89 | $(TOPDIR)/scripts/deps.pl >> $(TOPDIR)/.depends |
88 | 90 | ||
89 | $(TOPDIR)/.depends.cfgs: | 91 | $(TOPDIR)/.depends.cfgs: |
90 | # config.in interdependencies | 92 | # config.in interdependencies |
91 | @echo $(configs) | sed -e 's,/config.in,,g' | ( for i in `cat`; do echo $$i; done ) > dirs | 93 | @echo $(configs) | sed -e 's,/config.in,,g' | ( for i in `cat`; do echo $$i; done ) > dirs |
92 | @cat dirs | ( for i in `cat`; do if [ "`cat dirs|grep $$i 2>/dev/null|wc -l`" -ne "1" ]; then deps=`cat dirs|grep $$i| grep -v "^$$i$$"|for i in \`cat|sed -e's,^$(TOPDIR)/,$$(TOPDIR)/,g'\`; do echo $$i/config.in; done`; echo `echo $$i/config.in|sed -e 's,^$(TOPDIR)/,$$(TOPDIR)/,'` : $$deps; fi; done ) >> $@ | 94 | @cat dirs | ( for i in `cat`; do if [ "`cat dirs|grep $$i 2>/dev/null|wc -l`" -ne "1" ]; then deps=`cat dirs|grep $$i| grep -v "^$$i$$"|for i in \`cat|sed -e's,^$(TOPDIR)/,$$(TOPDIR)/,g'\`; do echo $$i/config.in; done`; echo `echo $$i/config.in|sed -e 's,^$(TOPDIR)/,$$(TOPDIR)/,'` : $$deps; fi; done ) >> $@ |
93 | @-rm -f dirs | 95 | @-rm -f dirs |
94 | 96 | ||
95 | $(QTDIR)/stamp-headers : | 97 | $(QTDIR)/stamp-headers : |
96 | @-rm -f $(QTDIR)/stamp-headers* | 98 | @-rm -f $(QTDIR)/stamp-headers* |
97 | ( cd $(QTDIR)/include; \ | 99 | ( cd $(QTDIR)/include; \ |
98 | $(patsubst %,ln -sf ../src/kernel/%;,qgfx_qws.h qwsmouse_qws.h \ | 100 | $(patsubst %,ln -sf ../src/kernel/%;,qgfx_qws.h qwsmouse_qws.h \ |
99 | qcopchannel_qws.h qwindowsystem_qws.h \ | 101 | qcopchannel_qws.h qwindowsystem_qws.h \ |
100 | qfontmanager_qws.h qwsdefaultdecoration_qws.h)) | 102 | qfontmanager_qws.h qwsdefaultdecoration_qws.h)) |
101 | touch $@ | 103 | touch $@ |
102 | 104 | ||
103 | $(QTDIR)/stamp-headers-x11 : | 105 | $(QTDIR)/stamp-headers-x11 : |
104 | @-rm -f $(QTDIR)/stamp-headers* | 106 | @-rm -f $(QTDIR)/stamp-headers* |
105 | cd $(QTDIR)/include; $(patsubst %,ln -sf $(OPIEDIR)/x11/libqpe-x11/qt/%;,qgfx_qws.h qwsmouse_qws.h qcopchannel_qws.h qwindowsystem_qws.h qfontmanager_qws.h qwsdefaultdecoration_qws.h) | 107 | cd $(QTDIR)/include; $(patsubst %,ln -sf $(OPIEDIR)/x11/libqpe-x11/qt/%;,qgfx_qws.h qwsmouse_qws.h qcopchannel_qws.h qwindowsystem_qws.h qfontmanager_qws.h qwsdefaultdecoration_qws.h) |
106 | touch $@ | 108 | touch $@ |
107 | 109 | ||
108 | $(OPIEDIR)/stamp-headers : | 110 | $(OPIEDIR)/stamp-headers : |
109 | @-rm -f $(OPIEDIR)/stamp-headers* | 111 | @-rm -f $(OPIEDIR)/stamp-headers* |
110 | mkdir -p $(TOPDIR)/include/qpe \ | 112 | mkdir -p $(TOPDIR)/include/qpe \ |
111 | $(TOPDIR)/include/qtopia \ | 113 | $(TOPDIR)/include/qtopia \ |
112 | $(TOPDIR)/include/opie \ | 114 | $(TOPDIR)/include/opie \ |
113 | $(TOPDIR)/include/opie2 \ | 115 | $(TOPDIR)/include/opie2 \ |
114 | $(TOPDIR)/include/qtopia/private \ | 116 | $(TOPDIR)/include/qtopia/private \ |
115 | $(TOPDIR)/include/sl | 117 | $(TOPDIR)/include/sl |
116 | ( cd include/qpe && rm -f *.h; ln -sf ../../library/*.h .; ln -sf ../../library/backend/*.h .; rm -f *_p.h; ) | 118 | ( cd include/qpe && rm -f *.h; ln -sf ../../library/*.h .; ln -sf ../../library/backend/*.h .; rm -f *_p.h; ) |
117 | ( cd include/qtopia && rm -f *.h; ln -sf ../../library/*.h .; ) | 119 | ( cd include/qtopia && rm -f *.h; ln -sf ../../library/*.h .; ) |
118 | ( cd include/qtopia/private && rm -f *.h; ln -sf ../../../library/backend/*.h .; ) | 120 | ( cd include/qtopia/private && rm -f *.h; ln -sf ../../../library/backend/*.h .; ) |
119 | ifeq ($(CONFIG_LIBOPIE),y) | 121 | ifeq ($(CONFIG_LIBOPIE),y) |
120 | # libopie1 | 122 | # libopie1 |
121 | ( cd include/opie && rm -f *.h; ln -sf ../../libopie/*.h .; rm -f *_p.h; ) | 123 | ( cd include/opie && rm -f *.h; ln -sf ../../libopie/*.h .; rm -f *_p.h; ) |
122 | ( cd include/opie && ln -sf ../../libopie/pim/*.h .; ) | 124 | ( cd include/opie && ln -sf ../../libopie/pim/*.h .; ) |
123 | ( cd include/opie && ln -sf ../../libopie/big-screen/*.h .; ) | 125 | ( cd include/opie && ln -sf ../../libopie/big-screen/*.h .; ) |
124 | endif | 126 | endif |
125 | # libopie2 | 127 | # libopie2 |
126 | ( cd include/opie2 && ln -sf ../../libopie2/opiecore/*.h .; ) | 128 | ( cd include/opie2 && ln -sf ../../libopie2/opiecore/*.h .; ) |
127 | ( cd include/opie2 && ln -sf ../../libopie2/opiecore/device/*.h .; ) | 129 | ( cd include/opie2 && ln -sf ../../libopie2/opiecore/device/*.h .; ) |
128 | ( cd include/opie2 && ln -sf ../../libopie2/opiemm/*.h .; ) | 130 | ( cd include/opie2 && ln -sf ../../libopie2/opiemm/*.h .; ) |
129 | ( cd include/opie2 && ln -sf ../../libopie2/opiedb/*.h .; ) | 131 | ( cd include/opie2 && ln -sf ../../libopie2/opiedb/*.h .; ) |
130 | ( cd include/opie2 && ln -sf ../../libopie2/opienet/*.h .; ) | 132 | ( cd include/opie2 && ln -sf ../../libopie2/opienet/*.h .; ) |
131 | ( cd include/opie2 && ln -sf ../../libopie2/opiepim/*.h .; ) | 133 | ( cd include/opie2 && ln -sf ../../libopie2/opiepim/*.h .; ) |
132 | ( cd include/opie2 && ln -sf ../../libopie2/opiepim/core/*.h .; ) | 134 | ( cd include/opie2 && ln -sf ../../libopie2/opiepim/core/*.h .; ) |
133 | ( cd include/opie2 && ln -sf ../../libopie2/opiepim/core/backends/*.h .; ) | 135 | ( cd include/opie2 && ln -sf ../../libopie2/opiepim/core/backends/*.h .; ) |
134 | ( cd include/opie2 && ln -sf ../../libopie2/opiepim/ui/*.h .; ) | 136 | ( cd include/opie2 && ln -sf ../../libopie2/opiepim/ui/*.h .; ) |
135 | ( cd include/opie2 && ln -sf ../../libopie2/opieui/*.h .; ) | 137 | ( cd include/opie2 && ln -sf ../../libopie2/opieui/*.h .; ) |
136 | ( cd include/opie2 && ln -sf ../../libopie2/opieui/fileselector/*.h .; ) | 138 | ( cd include/opie2 && ln -sf ../../libopie2/opieui/fileselector/*.h .; ) |
137 | ( cd include/opie2 && ln -sf ../../libopie2/opieui/big-screen/*.h .; ) | 139 | ( cd include/opie2 && ln -sf ../../libopie2/opieui/big-screen/*.h .; ) |
138 | # auxilliary libraries | 140 | # auxilliary libraries |
139 | ( cd include/opie2 && ln -sf ../../libqtaux/*.h .; ) | 141 | ( cd include/opie2 && ln -sf ../../libqtaux/*.h .; ) |
140 | ( cd include/sl && ln -sf ../../libslcompat/*.h .; ) | 142 | ( cd include/sl && ln -sf ../../libslcompat/*.h .; ) |
141 | # all | 143 | # all |
142 | ifeq ($(CONFIG_LIBOPIE),y) | 144 | ifeq ($(CONFIG_LIBOPIE),y) |
143 | ( cd include/opie; for generatedHeader in `cd ../../libopie; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ | 145 | ( cd include/opie; for generatedHeader in `cd ../../libopie; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ |
144 | ln -sf ../../libopie/$$generatedHeader $$generatedHeader; done ) | 146 | ln -sf ../../libopie/$$generatedHeader $$generatedHeader; done ) |
145 | endif | 147 | endif |
146 | ( cd include/opie2; for generatedHeader in `cd ../../libopie2/opieui; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ | 148 | ( cd include/opie2; for generatedHeader in `cd ../../libopie2/opieui; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ |
147 | ln -sf ../../libopie2/opieui/$$generatedHeader $$generatedHeader; done ) | 149 | ln -sf ../../libopie2/opieui/$$generatedHeader $$generatedHeader; done ) |
148 | ( cd include/opie2; for generatedHeader in `cd ../../libopie2/opiepim/ui; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ | 150 | ( cd include/opie2; for generatedHeader in `cd ../../libopie2/opiepim/ui; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ |
149 | ln -sf ../../libopie2/opiepim/ui/$$generatedHeader $$generatedHeader; done ) | 151 | ln -sf ../../libopie2/opiepim/ui/$$generatedHeader $$generatedHeader; done ) |
150 | ln -sf ../../library/custom.h $(TOPDIR)/include/qpe/custom.h | 152 | ln -sf ../../library/custom.h $(TOPDIR)/include/qpe/custom.h |
151 | touch $@ | 153 | touch $@ |
152 | 154 | ||
153 | $(OPIEDIR)/stamp-headers-x11 : | 155 | $(OPIEDIR)/stamp-headers-x11 : |
154 | @-rm -f $(OPIEDIR)/stamp-headers* | 156 | @-rm -f $(OPIEDIR)/stamp-headers* |
155 | mkdir -p $(TOPDIR)/include/qpe $(TOPDIR)/include/qtopia \ | 157 | mkdir -p $(TOPDIR)/include/qpe $(TOPDIR)/include/qtopia \ |
156 | $(TOPDIR)/include/opie $(TOPDIR)/include/qtopia/private | 158 | $(TOPDIR)/include/opie $(TOPDIR)/include/qtopia/private |
157 | ( cd include/qpe && rm -f *.h; ln -sf ../../library/*.h .; ln -sf ../../library/backend/*.h .; rm -f *_p.h; ) | 159 | ( cd include/qpe && rm -f *.h; ln -sf ../../library/*.h .; ln -sf ../../library/backend/*.h .; rm -f *_p.h; ) |
158 | ( cd include/qtopia && rm -f *.h; ln -sf ../../library/*.h .; ) | 160 | ( cd include/qtopia && rm -f *.h; ln -sf ../../library/*.h .; ) |
159 | ( cd include/qtopia/private && rm -f *.h; ln -sf ../../../library/backend/*.h .; ) | 161 | ( cd include/qtopia/private && rm -f *.h; ln -sf ../../../library/backend/*.h .; ) |
160 | ( cd include/opie && rm -f *.h; ln -sf ../../libopie/*.h .; rm -f *_p.h; ) | 162 | ( cd include/opie && rm -f *.h; ln -sf ../../libopie/*.h .; rm -f *_p.h; ) |
161 | ( cd include/opie && ln -sf ../../libsql/*.h .; ) | 163 | ( cd include/opie && ln -sf ../../libsql/*.h .; ) |
162 | ( cd include/opie && ln -sf ../../libopie/pim/*.h .; ) | 164 | ( cd include/opie && ln -sf ../../libopie/pim/*.h .; ) |
163 | ( cd include/opie; for generatedHeader in `cd ../../libopie; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ | 165 | ( cd include/opie; for generatedHeader in `cd ../../libopie; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ |
164 | ln -sf ../../libopie/$$generatedHeader $$generatedHeader; done ) | 166 | ln -sf ../../libopie/$$generatedHeader $$generatedHeader; done ) |
165 | ln -sf ../../library/custom.h $(TOPDIR)/include/qpe/custom.h | 167 | ln -sf ../../library/custom.h $(TOPDIR)/include/qpe/custom.h |
166 | ( cd include/qpe; ln -sf ../../x11/libqpe-x11/qpe/*.h .; ) | 168 | ( cd include/qpe; ln -sf ../../x11/libqpe-x11/qpe/*.h .; ) |
167 | touch $@ | 169 | touch $@ |
168 | 170 | ||
169 | $(TOPDIR)/library/custom.h : $(TOPDIR)/.config | 171 | $(TOPDIR)/library/custom.h : $(TOPDIR)/.config |
170 | @-rm -f $@ | 172 | @-rm -f $@ |
171 | @$(if $(patsubst "%",%,$(CONFIG_CUSTOMFILE)),\ | 173 | @$(if $(patsubst "%",%,$(CONFIG_CUSTOMFILE)),\ |
172 | ln -sf $(patsubst "%",%,$(CONFIG_CUSTOMFILE)) $@) | 174 | ln -sf $(patsubst "%",%,$(CONFIG_CUSTOMFILE)) $@) |
173 | @touch $@ | 175 | @touch $@ |
174 | 176 | ||
175 | $(TOPDIR)/scripts/lxdialog/lxdialog $(TOPDIR)/scripts/kconfig/mconf $(TOPDIR)/scripts/kconfig/conf $(TOPDIR)/scripts/kconfig/qconf $(TOPDIR)/scripts/kconfig/libkconfig.so $(TOPDIR)/scripts/kconfig/gconf $(TOPDIR)/qmake/qmake: | 177 | $(TOPDIR)/scripts/lxdialog/lxdialog $(TOPDIR)/scripts/kconfig/mconf $(TOPDIR)/scripts/kconfig/conf $(TOPDIR)/scripts/kconfig/qconf $(TOPDIR)/scripts/kconfig/libkconfig.so $(TOPDIR)/scripts/kconfig/gconf $(TOPDIR)/qmake/qmake: |
176 | @$(call descend,$(shell dirname $@),$(shell basename $@)) | 178 | @$(call descend,$(shell dirname $@),$(shell basename $@)) |
177 | 179 | ||
178 | menuconfig: $(TOPDIR)/scripts/lxdialog/lxdialog $(TOPDIR)/scripts/kconfig/mconf ./config.in | 180 | menuconfig: $(TOPDIR)/scripts/lxdialog/lxdialog $(TOPDIR)/scripts/kconfig/mconf ./config.in |
179 | $(TOPDIR)/scripts/kconfig/mconf ./config.in | 181 | $(TOPDIR)/scripts/kconfig/mconf ./config.in |
180 | @touch ./.config.stamp | 182 | @touch ./.config.stamp |
181 | 183 | ||
182 | xconfig: $(TOPDIR)/scripts/kconfig/qconf $(TOPDIR)/scripts/kconfig/libkconfig.so ./config.in | 184 | xconfig: $(TOPDIR)/scripts/kconfig/qconf $(TOPDIR)/scripts/kconfig/libkconfig.so ./config.in |
183 | $(TOPDIR)/scripts/kconfig/qconf ./config.in | 185 | $(TOPDIR)/scripts/kconfig/qconf ./config.in |
184 | @touch .config.stamp | 186 | @touch .config.stamp |
185 | 187 | ||
186 | gconfig: $(TOPDIR)/scripts/kconfig/gconf $(TOPDIR)/scripts/kconfig/libkconfig.so ./config.in | 188 | gconfig: $(TOPDIR)/scripts/kconfig/gconf $(TOPDIR)/scripts/kconfig/libkconfig.so ./config.in |
187 | $(TOPDIR)/scripts/kconfig/gconf ./config.in | 189 | $(TOPDIR)/scripts/kconfig/gconf ./config.in |
188 | @touch .config.stamp | 190 | @touch .config.stamp |
189 | 191 | ||
190 | config: $(TOPDIR)/scripts/kconfig/conf ./config.in | 192 | config: $(TOPDIR)/scripts/kconfig/conf ./config.in |
191 | $(TOPDIR)/scripts/kconfig/conf ./config.in | 193 | $(TOPDIR)/scripts/kconfig/conf ./config.in |
192 | @touch .config.stamp | 194 | @touch .config.stamp |
193 | 195 | ||
194 | oldconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in | 196 | oldconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in |
195 | $(TOPDIR)/scripts/kconfig/conf -o ./config.in | 197 | $(TOPDIR)/scripts/kconfig/conf -o ./config.in |
196 | @touch .config.stamp | 198 | @touch .config.stamp |
197 | 199 | ||
198 | randconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in | 200 | randconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in |
199 | $(TOPDIR)/scripts/kconfig/conf -r ./config.in | 201 | $(TOPDIR)/scripts/kconfig/conf -r ./config.in |
200 | @touch .config.stamp | 202 | @touch .config.stamp |
201 | 203 | ||
202 | allyesconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in | 204 | allyesconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in |
203 | $(TOPDIR)/scripts/kconfig/conf -y ./config.in | 205 | $(TOPDIR)/scripts/kconfig/conf -y ./config.in |
204 | @touch .config.stamp | 206 | @touch .config.stamp |
205 | 207 | ||
206 | allnoconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in | 208 | allnoconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in |
207 | $(TOPDIR)/scripts/kconfig/conf -n ./config.in | 209 | $(TOPDIR)/scripts/kconfig/conf -n ./config.in |
208 | @touch .config.stamp | 210 | @touch .config.stamp |
209 | 211 | ||
210 | defconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in | 212 | defconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in |
211 | $(TOPDIR)/scripts/kconfig/conf -d ./config.in | 213 | $(TOPDIR)/scripts/kconfig/conf -d ./config.in |
212 | @touch .config.stamp | 214 | @touch .config.stamp |
213 | 215 | ||
214 | $(TOPDIR)/qmake/qmake : $(TOPDIR)/mkspecs/default | 216 | $(TOPDIR)/qmake/qmake : $(TOPDIR)/mkspecs/default |
215 | 217 | ||
216 | $(TOPDIR)/mkspecs/default : | 218 | $(TOPDIR)/mkspecs/default : |
217 | ln -sf linux-g++ $@ | 219 | ln -sf linux-g++ $@ |
218 | 220 | ||
219 | $(TOPDIR)/scripts/subst : force | 221 | $(TOPDIR)/scripts/subst : force |
220 | @( \ | 222 | @( \ |
221 | echo 's,\$$QPE_VERSION,$(QPE_VERSION),g'; \ | 223 | echo 's,\$$QPE_VERSION,$(QPE_VERSION),g'; \ |
222 | echo 's,\$$OPIE_VERSION,$(OPIE_VERSION),g'; \ | 224 | echo 's,\$$OPIE_VERSION,$(OPIE_VERSION),g'; \ |
223 | echo 's,\$$QTE_VERSION,$(QTE_VERSION),g'; \ | 225 | echo 's,\$$QTE_VERSION,$(QTE_VERSION),g'; \ |
224 | echo 's,\$$QTE_REVISION,$(QTE_REVISION),g'; \ | 226 | echo 's,\$$QTE_REVISION,$(QTE_REVISION),g'; \ |
225 | echo 's,\$$SUB_VERSION,$(SUB_VERSION),g'; \ | 227 | echo 's,\$$SUB_VERSION,$(SUB_VERSION),g'; \ |
226 | echo 's,\$$EXTRAVERSION,$(EXTRAVERSION),g'; \ | 228 | echo 's,\$$EXTRAVERSION,$(EXTRAVERSION),g'; \ |
227 | echo 's,\$$QTE_BASEVERSION,$(QTE_BASEVERSION),g'; \ | 229 | echo 's,\$$QTE_BASEVERSION,$(QTE_BASEVERSION),g'; \ |
228 | ) > $@ || ( rm -f $@; exit 1 ) | 230 | ) > $@ || ( rm -f $@; exit 1 ) |
229 | 231 | ||
230 | $(TOPDIR)/scripts/filesubst : force | 232 | $(TOPDIR)/scripts/filesubst : force |
231 | @( \ | 233 | @( \ |
232 | echo 's,\$$OPIEDIR/root/,/,g'; \ | 234 | echo 's,\$$OPIEDIR/root/,/,g'; \ |
233 | echo 's,$(OPIEDIR)/root/,/,g'; \ | 235 | echo 's,$(OPIEDIR)/root/,/,g'; \ |
234 | echo 's,\$$OPIEDIR,$(prefix),g'; \ | 236 | echo 's,\$$OPIEDIR,$(prefix),g'; \ |
235 | echo 's,$(OPIEDIR),$(prefix),g'; \ | 237 | echo 's,$(OPIEDIR),$(prefix),g'; \ |
236 | echo 's,\$$QTDIR,$(prefix),g'; \ | 238 | echo 's,\$$QTDIR,$(prefix),g'; \ |
237 | echo 's,$(QTDIR),$(prefix),g'; \ | 239 | echo 's,$(QTDIR),$(prefix),g'; \ |
238 | echo 's,^\(\./\)*root/,/,g'; \ | 240 | echo 's,^\(\./\)*root/,/,g'; \ |
239 | echo 's,^\(\./\)*etc/,$(prefix)/etc/,g'; \ | 241 | echo 's,^\(\./\)*etc/,$(prefix)/etc/,g'; \ |
240 | echo 's,^\(\./\)*lib/,$(prefix)/lib/,g'; \ | 242 | echo 's,^\(\./\)*lib/,$(prefix)/lib/,g'; \ |
241 | echo 's,^\(\./\)*bin/,$(prefix)/bin/,g'; \ | 243 | echo 's,^\(\./\)*bin/,$(prefix)/bin/,g'; \ |
242 | echo 's,^\(\./\)*pics/,$(prefix)/pics/,g'; \ | 244 | echo 's,^\(\./\)*pics/,$(prefix)/pics/,g'; \ |
243 | echo 's,^\(\./\)*sounds/,$(prefix)/sounds/,g'; \ | 245 | echo 's,^\(\./\)*sounds/,$(prefix)/sounds/,g'; \ |
244 | echo 's,^\(\./\)*i18n/,$(prefix)/i18n/,g'; \ | 246 | echo 's,^\(\./\)*i18n/,$(prefix)/i18n/,g'; \ |
245 | echo 's,^\(\./\)*plugins/,$(prefix)/plugins/,g'; \ | 247 | echo 's,^\(\./\)*plugins/,$(prefix)/plugins/,g'; \ |
246 | echo 's,^\(\./\)*apps/,$(prefix)/apps/,g'; \ | 248 | echo 's,^\(\./\)*apps/,$(prefix)/apps/,g'; \ |
247 | echo 's,^\(\./\)*share/,$(prefix)/share/,g'; \ | 249 | echo 's,^\(\./\)*share/,$(prefix)/share/,g'; \ |
248 | echo 's,^\(\./\)*i18n/,$(prefix)/i18n/,g'; \ | 250 | echo 's,^\(\./\)*i18n/,$(prefix)/i18n/,g'; \ |
249 | echo 's,^\(\./\)*help/,$(prefix)/help/,g'; \ | 251 | echo 's,^\(\./\)*help/,$(prefix)/help/,g'; \ |
250 | ) > $@ || ( rm -f $@; exit 1 ) | 252 | ) > $@ || ( rm -f $@; exit 1 ) |
251 | 253 | ||
252 | ## general rules ## | 254 | ## general rules ## |
253 | 255 | ||
254 | define descend | 256 | define descend |
255 | $(MAKE) $(if $(QMAKE),QMAKE=$(QMAKE)) -C $(1) $(2) | 257 | $(MAKE) $(if $(QMAKE),QMAKE=$(QMAKE)) -C $(1) $(2) |
256 | endef | 258 | endef |
257 | 259 | ||
258 | define makefilegen | 260 | define makefilegen |
259 | cd $(if $(1),$(shell dirname $(1))); $(TOPDIR)/qmake/qmake $(3) -o $(if $(1),$(shell basename $(1))) `cat $(OPIEDIR)/packages | grep " \`echo $(1)|sed -e 's,/Makefile$$,,'\`" | \ | 261 | cd $(if $(1),$(shell dirname $(1))); $(TOPDIR)/qmake/qmake $(3) -o $(if $(1),$(shell basename $(1))) `cat $(OPIEDIR)/packages | grep " \`echo $(1)|sed -e 's,/Makefile$$,,'\`" | \ |
260 | head -1 | awk '{print $$3}'` | 262 | head -1 | awk '{print $$3}'` |
261 | endef | 263 | endef |
262 | 264 | ||
263 | define makecfg | 265 | define makecfg |
264 | $(TOPDIR)/scripts/makecfg.pl $1 $(OPIEDIR) | 266 | $(TOPDIR)/scripts/makecfg.pl $1 $(OPIEDIR) |
265 | endef | 267 | endef |
@@ -1,247 +1,252 @@ | |||
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 | 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 | 39 | # added for threaded compile |
40 | config THREADED | 40 | config THREADED |
41 | boolean "Enable threaded build" | 41 | boolean "Enable threaded build" |
42 | default "n" | 42 | default "n" |
43 | 43 | ||
44 | config DEBUG | 44 | config DEBUG |
45 | boolean "Enable debug builds" | 45 | boolean "Enable debug builds" |
46 | default n | 46 | default n |
47 | config RELEASE | 47 | config RELEASE |
48 | bool | 48 | bool |
49 | default y | 49 | default y |
50 | depends !DEBUG | 50 | depends !DEBUG |
51 | 51 | ||
52 | config QUICK_LAUNCH | 52 | config QUICK_LAUNCH |
53 | boolean "Enable Quick Launch" | 53 | boolean "Enable Quick Launch" |
54 | default n | 54 | default n |
55 | 55 | ||
56 | config QUICKLAUNCH_PATH | 56 | config QUICKLAUNCH_PATH |
57 | string "Path to quicklauncher" | 57 | string "Path to quicklauncher" |
58 | default "./quicklauncher" if TARGET_X86 | 58 | default "./quicklauncher" if TARGET_X86 |
59 | default "/opt/QtPalmtop/bin/quicklauncher" if ! TARGET_X86 | 59 | default "/opt/QtPalmtop/bin/quicklauncher" if ! TARGET_X86 |
60 | 60 | ||
61 | config SPECFILE | 61 | config SPECFILE |
62 | string | 62 | string |
63 | default "qws/linux-generic-g++" if TARGET_X86 && (! X11) | 63 | default "qws/linux-generic-g++" if TARGET_X86 && (! X11) |
64 | default "linux-g++" if TARGET_X86 && X11 | 64 | default "linux-g++" if TARGET_X86 && X11 |
65 | default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11) | 65 | default "qws/linux-sharp-g++" if TARGET_SHARP && (! X11) |
66 | default "linux-g++" if TARGET_SHARP && X11 | 66 | default "linux-g++" if TARGET_SHARP && X11 |
67 | default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) | 67 | default "qws/linux-ipaq-g++" if TARGET_IPAQ && (! X11) |
68 | default "linux-g++" if TARGET_IPAQ && X11 | 68 | default "linux-g++" if TARGET_IPAQ && X11 |
69 | default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11) | 69 | default "qws/linux-ramses-g++" if TARGET_RAMSES && (! X11) |
70 | default "linux-g++" if TARGET_RAMSES && X11 | 70 | default "linux-g++" if TARGET_RAMSES && X11 |
71 | default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11) | 71 | default "qws/linux-simpad-g++" if TARGET_SIMPAD && (! X11) |
72 | default "linux-g++" if TARGET_SIMPAD && X11 | 72 | default "linux-g++" if TARGET_SIMPAD && X11 |
73 | default "qws/linux-yopy-g++" if TARGET_YOPY && (! X11) | 73 | default "qws/linux-yopy-g++" if TARGET_YOPY && (! X11) |
74 | default "qws/macx-generic-g++" if TARGET_MACOSX && (! X11) | 74 | default "qws/macx-generic-g++" if TARGET_MACOSX && (! X11) |
75 | 75 | ||
76 | config CUSTOMFILE | 76 | config CUSTOMFILE |
77 | string | 77 | string |
78 | default "custom-ipaq.h" if TARGET_IPAQ | 78 | default "custom-ipaq.h" if TARGET_IPAQ |
79 | default "custom-sharp.h" if TARGET_SHARP | 79 | default "custom-sharp.h" if TARGET_SHARP |
80 | default "custom-ramses.h" if TARGET_RAMSES | 80 | default "custom-ramses.h" if TARGET_RAMSES |
81 | default "custom-ipaq.h" if TARGET_SIMPAD | 81 | default "custom-ipaq.h" if TARGET_SIMPAD |
82 | default "custom-yopy.h" if TARGET_YOPY | 82 | default "custom-yopy.h" if TARGET_YOPY |
83 | 83 | ||
84 | config OPTIMIZATIONS | 84 | config OPTIMIZATIONS |
85 | string "Optimization flags" | 85 | string "Optimization flags" |
86 | depends OPTIMIZE | 86 | depends OPTIMIZE |
87 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ | 87 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_IPAQ |
88 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_YOPY | 88 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_YOPY |
89 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SHARP | 89 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SHARP |
90 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_RAMSES | 90 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_RAMSES |
91 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SIMPAD | 91 | default "-march=armv4 -mtune=strongarm1100 -mapcs-32 -fexpensive-optimizations -fomit-frame-pointer -O2" if TARGET_SIMPAD |
92 | 92 | ||
93 | config EXPERIMENTAL | 93 | config EXPERIMENTAL |
94 | bool "Prompt for development and/or incomplete items" | 94 | bool "Prompt for development and/or incomplete items" |
95 | default y | 95 | default y |
96 | 96 | ||
97 | endmenu | 97 | endmenu |
98 | 98 | ||
99 | menu "Configuration" | 99 | menu "Configuration" |
100 | config OPIE_NO_OVERRIDE_QT | 100 | config OPIE_NO_OVERRIDE_QT |
101 | boolean "Build Opie against an unpatched version of Qt" | 101 | boolean "Build Opie against an unpatched version of Qt" |
102 | default n | 102 | default n |
103 | 103 | ||
104 | config OPIE_NO_BUILTIN_SHUTDOWN | 104 | config OPIE_NO_BUILTIN_SHUTDOWN |
105 | boolean "Disable the built in shutdown application" | 105 | boolean "Disable the built in shutdown application" |
106 | default n | 106 | default n |
107 | 107 | ||
108 | config OPIE_NO_BUILTIN_CALIBRATE | 108 | config OPIE_NO_BUILTIN_CALIBRATE |
109 | boolean "Disable the built in calibrate application" | 109 | boolean "Disable the built in calibrate application" |
110 | default y if TARGET_YOPY | 110 | default y if TARGET_YOPY |
111 | default n | 111 | default n |
112 | 112 | ||
113 | config OPIE_SOUND_FRAGMENT_SHIFT | 113 | config OPIE_SOUND_FRAGMENT_SHIFT |
114 | string "The sound fragment used in Opie Player I" | 114 | string "The sound fragment used in Opie Player I" |
115 | default "14" if TARGET_IPAQ | 115 | default "14" if TARGET_IPAQ |
116 | default "16" if (!TARGET_IPAQ) | 116 | default "16" if (!TARGET_IPAQ) |
117 | 117 | ||
118 | config USE_REALTIME_AUDIO_THREAD | 118 | config USE_REALTIME_AUDIO_THREAD |
119 | boolean "Use a realtime thread in Opie Player I" | 119 | boolean "Use a realtime thread in Opie Player I" |
120 | default y if TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP | 120 | default y if TARGET_IPAQ || TARGET_SIMPAD || TARGET_RAMSES || TARGET_SHARP |
121 | default n | 121 | default n |
122 | 122 | ||
123 | config QT_QWS_ALLOW_OVERCLOCK | 123 | config QT_QWS_ALLOW_OVERCLOCK |
124 | boolean "Allow the user to overclock the device" | 124 | boolean "Allow the user to overclock the device" |
125 | depends TARGET_RAMSES | 125 | depends TARGET_RAMSES |
126 | default n | 126 | default n |
127 | 127 | ||
128 | config OPIE_HIGH_RES_SMALL_PHY | 128 | config OPIE_HIGH_RES_SMALL_PHY |
129 | boolean "Resolution is bigger than physical screen" | 129 | boolean "Resolution is bigger than physical screen" |
130 | default y if TARGET_C700 | 130 | default y if TARGET_C700 |
131 | default n | 131 | default n |
132 | 132 | ||
133 | config OPIE_NEW_ALLOC | 133 | config OPIE_NEW_ALLOC |
134 | boolean "Use malloc and free for the implementation" | 134 | boolean "Use malloc and free for the implementation" |
135 | default y if TARGET_RAMSES || TARGET_IPAQ || TARGET_SIMPAD || TARGET_SHARP | 135 | default y if TARGET_RAMSES || TARGET_IPAQ || TARGET_SIMPAD || TARGET_SHARP |
136 | default n | 136 | default n |
137 | 137 | ||
138 | config OPIE_NO_SOUND_PCM_READ_BITS | 138 | config OPIE_NO_SOUND_PCM_READ_BITS |
139 | boolean "There is not a pcm_read_bits io control" | 139 | boolean "There is not a pcm_read_bits io control" |
140 | default y if TARGET_SHARP | 140 | default y if TARGET_SHARP |
141 | default n | 141 | default n |
142 | 142 | ||
143 | config OPIE_WE_VERSION_OVERRIDE | ||
144 | boolean "Override autodetection of wireless extension (WE) version | ||
145 | default n | ||
146 | |||
143 | config OPIE_WE_VERSION | 147 | config OPIE_WE_VERSION |
148 | depends OPIE_WE_VERSION_OVERRIDE | ||
144 | string "The wireless extension (WE) version to build against" | 149 | string "The wireless extension (WE) version to build against" |
145 | default "15" if ! TARGET_X86 | 150 | default "15" if ! TARGET_X86 |
146 | default "16" if TARGET_X86 | 151 | default "16" if TARGET_X86 |
147 | 152 | ||
148 | endmenu | 153 | endmenu |
149 | 154 | ||
150 | menu "Base" | 155 | menu "Base" |
151 | choice | 156 | choice |
152 | prompt "Qpe Library Selection" | 157 | prompt "Qpe Library Selection" |
153 | default LIBQPE | 158 | default LIBQPE |
154 | source library/config.in | 159 | source library/config.in |
155 | source x11/config.in | 160 | source x11/config.in |
156 | endchoice | 161 | endchoice |
157 | source libopie/config.in | 162 | source libopie/config.in |
158 | 163 | ||
159 | source libopie2/config.in | 164 | source libopie2/config.in |
160 | source libqtaux/config.in | 165 | source libqtaux/config.in |
161 | 166 | ||
162 | source core/opie-login/config.in | 167 | source core/opie-login/config.in |
163 | source core/opiealarm/config.in | 168 | source core/opiealarm/config.in |
164 | source core/tools/quicklauncher/config.in | 169 | source core/tools/quicklauncher/config.in |
165 | source core/launcher/config.in | 170 | source core/launcher/config.in |
166 | source core/symlinker/config.in | 171 | source core/symlinker/config.in |
167 | endmenu | 172 | endmenu |
168 | 173 | ||
169 | comment "" | 174 | comment "" |
170 | 175 | ||
171 | menu "Applets" | 176 | menu "Applets" |
172 | source core/applets/config.in | 177 | source core/applets/config.in |
173 | source noncore/applets/config.in | 178 | source noncore/applets/config.in |
174 | endmenu | 179 | endmenu |
175 | 180 | ||
176 | menu "Apps" | 181 | menu "Apps" |
177 | source core/apps/config.in | 182 | source core/apps/config.in |
178 | source noncore/apps/config.in | 183 | source noncore/apps/config.in |
179 | endmenu | 184 | endmenu |
180 | 185 | ||
181 | menu "Communications and Networking" | 186 | menu "Communications and Networking" |
182 | source noncore/comm/config.in | 187 | source noncore/comm/config.in |
183 | source noncore/net/config.in | 188 | source noncore/net/config.in |
184 | endmenu | 189 | endmenu |
185 | 190 | ||
186 | menu "Games" | 191 | menu "Games" |
187 | source noncore/games/config.in | 192 | source noncore/games/config.in |
188 | endmenu | 193 | endmenu |
189 | 194 | ||
190 | menu "Graphics and Multimedia" | 195 | menu "Graphics and Multimedia" |
191 | source freetype/config.in | 196 | source freetype/config.in |
192 | source noncore/graphics/config.in | 197 | source noncore/graphics/config.in |
193 | source core/multimedia/config.in | 198 | source core/multimedia/config.in |
194 | source noncore/multimedia/config.in | 199 | source noncore/multimedia/config.in |
195 | endmenu | 200 | endmenu |
196 | 201 | ||
197 | menu "Input methods" | 202 | menu "Input methods" |
198 | source inputmethods/config.in | 203 | source inputmethods/config.in |
199 | endmenu | 204 | endmenu |
200 | 205 | ||
201 | menu "Pim" | 206 | menu "Pim" |
202 | source core/pim/config.in | 207 | source core/pim/config.in |
203 | comment "Today Plugins ---" | 208 | comment "Today Plugins ---" |
204 | source noncore/todayplugins/config.in | 209 | source noncore/todayplugins/config.in |
205 | source core/pim/today/plugins/config.in | 210 | source core/pim/today/plugins/config.in |
206 | endmenu | 211 | endmenu |
207 | 212 | ||
208 | menu "Settings" | 213 | menu "Settings" |
209 | source core/settings/config.in | 214 | source core/settings/config.in |
210 | source noncore/settings/config.in | 215 | source noncore/settings/config.in |
211 | endmenu | 216 | endmenu |
212 | 217 | ||
213 | menu "Theming" | 218 | menu "Theming" |
214 | comment "Decorations ---" | 219 | comment "Decorations ---" |
215 | source noncore/decorations/config.in | 220 | source noncore/decorations/config.in |
216 | comment "Styles ---" | 221 | comment "Styles ---" |
217 | source noncore/styles/config.in | 222 | source noncore/styles/config.in |
218 | endmenu | 223 | endmenu |
219 | 224 | ||
220 | menu "Tools" | 225 | menu "Tools" |
221 | source noncore/tools/config.in | 226 | source noncore/tools/config.in |
222 | endmenu | 227 | endmenu |
223 | 228 | ||
224 | menu "Development" | 229 | menu "Development" |
225 | source development/keyview/config.in | 230 | source development/keyview/config.in |
226 | #source development/debugviewer/config.in | 231 | #source development/debugviewer/config.in |
227 | endmenu | 232 | endmenu |
228 | 233 | ||
229 | menu "Examples" | 234 | menu "Examples" |
230 | config EXAMPLES | 235 | config EXAMPLES |
231 | boolean "Compile Example Application" | 236 | boolean "Compile Example Application" |
232 | source examples/config.in | 237 | source examples/config.in |
233 | endmenu | 238 | endmenu |
234 | 239 | ||
235 | comment "" | 240 | comment "" |
236 | 241 | ||
237 | menu "Unsupported / Unmaintained" | 242 | menu "Unsupported / Unmaintained" |
238 | source noncore/unsupported/config.in | 243 | source noncore/unsupported/config.in |
239 | endmenu | 244 | endmenu |
240 | 245 | ||
241 | comment "" | 246 | comment "" |
242 | depends on EXPERIMENTAL | 247 | depends on EXPERIMENTAL |
243 | menu "Experimental" | 248 | menu "Experimental" |
244 | depends on EXPERIMENTAL | 249 | depends on EXPERIMENTAL |
245 | source libslcompat/config.in | 250 | source libslcompat/config.in |
246 | source core/qws/config.in | 251 | source core/qws/config.in |
247 | endmenu | 252 | endmenu |