Unidiff1 files changed, 3 insertions, 1 deletions
|
diff --git a/configure b/configure index 7e9ab68..a9d229e 100755 --- a/ configure+++ b/ configure |
|
@@ -129,33 +129,35 @@ CUSTOM=`echo $PLATFORM | sed -n -e "s/.*-\(.*\)-.*/\1/p"` |
129 | |
129 | |
130 | if [ -f library/custom-$CUSTOM.h ] |
130 | if [ -f library/custom-$CUSTOM.h ] |
131 | then |
131 | then |
132 | rm -f library/custom.h |
132 | rm -f library/custom.h |
133 | ln -s custom-$CUSTOM.h library/custom.h |
133 | ln -s custom-$CUSTOM.h library/custom.h |
134 | fi |
134 | fi |
135 | |
135 | |
136 | mkdir -p include/qpe |
136 | mkdir -p include/qpe |
137 | ( cd include/qpe && rm -f *.h; ln -s ../../library/*.h .; ln -s ../../library/backend/*.h .; rm -f *_p.h; ) |
137 | ( cd include/qpe && rm -f *.h; ln -s ../../library/*.h .; ln -s ../../library/backend/*.h .; rm -f *_p.h; ) |
138 | |
138 | |
139 | mkdir -p include/opie |
139 | mkdir -p include/opie |
140 | ( cd include/opie && rm -f *.h; ln -s ../../libopie/*.h .; rm -f *_p.h; ) |
140 | ( cd include/opie && rm -f *.h; ln -s ../../libopie/*.h .; rm -f *_p.h; ) |
141 | |
141 | |
142 | |
142 | |
143 | echo Creating makefiles... |
143 | echo Creating makefiles... |
144 | |
144 | |
145 | sed -e 's/^\(VERSION.*= \).*/\1'$VERSION_MAJ.$VERSION_MIN.$VERSION_PAT/ <library/library.pro >library/library.pro-v |
145 | # Set version for library directly |
| |
146 | # Version 1.5.0 right now for compat. |
| |
147 | sed -e 's/^\(VERSION.*= \).*/\1'1.5.0.$VERSION_PAT/ <library/library.pro >library/library.pro-v |
146 | mv library/library.pro-v library/library.pro |
148 | mv library/library.pro-v library/library.pro |
147 | |
149 | |
148 | if [ "$QT3" = yes ] |
150 | if [ "$QT3" = yes ] |
149 | then |
151 | then |
150 | VCONFIG="CONFIG+=qt3" |
152 | VCONFIG="CONFIG+=qt3" |
151 | else |
153 | else |
152 | VCONFIG="CONFIG+=qt2" |
154 | VCONFIG="CONFIG+=qt2" |
153 | fi |
155 | fi |
154 | |
156 | |
155 | if [ -f $TMAKEPATH/tmake.conf ] |
157 | if [ -f $TMAKEPATH/tmake.conf ] |
156 | then |
158 | then |
157 | # You have tmake. We'll regenerate the file for you... |
159 | # You have tmake. We'll regenerate the file for you... |
158 | echo "Makefiles will be regenerated." |
160 | echo "Makefiles will be regenerated." |
159 | fi |
161 | fi |
160 | |
162 | |
161 | H=`pwd` |
163 | H=`pwd` |
|