author | harlekin <harlekin> | 2002-06-23 10:49:10 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-06-23 10:49:10 (UTC) |
commit | 5ab3b3daeb6940af8cbe05e730559980fc880658 (patch) (unidiff) | |
tree | 679447551b7e687727bccb9a10973042689d74e8 | |
parent | 1d773d5df7038410c498d38a68a9569c1350975a (diff) | |
download | opie-5ab3b3daeb6940af8cbe05e730559980fc880658.zip opie-5ab3b3daeb6940af8cbe05e730559980fc880658.tar.gz opie-5ab3b3daeb6940af8cbe05e730559980fc880658.tar.bz2 |
hardcore libqpe version
-rwxr-xr-x | configure | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -133,25 +133,27 @@ then | |||
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... |