Unidiff1 files changed, 3 insertions, 1 deletions
|
diff --git a/configure b/configure index 7e9ab68..a9d229e 100755 --- a/ configure+++ b/ configure |
|
@@ -139,13 +139,15 @@ mkdir -p include/qpe |
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 |
|