Unidiff1 files changed, 12 insertions, 7 deletions
|
diff --git a/configure b/configure index 7824e36..3b474c6 100755 --- a/ configure+++ b/ configure |
|
@@ -5,7 +5,7 @@ |
5 | # Copyright 1999-2000 Trolltech AS. All rights reserved. |
5 | # Copyright 1999-2000 Trolltech AS. All rights reserved. |
6 | # |
6 | # |
7 | |
7 | |
8 | PLATFORM=linux-generic-g++ |
8 | PLATFORM=generic |
9 | SHARING=shared |
9 | SHARING=shared |
10 | DEBUG= |
10 | DEBUG= |
11 | QCONFIGARG= |
11 | QCONFIGARG= |
@@ -29,12 +29,9 @@ then |
29 | fi |
29 | fi |
30 | rm .test.qpe. |
30 | rm .test.qpe. |
31 | |
31 | |
32 | mkdir -p include/qpe |
32 | VERSION_MAJ=$(sed -n -e 's/.*QPE_VERSION "\([0-9]*\)\.[0-9]*\.[0-9]*.*".*/\1/p' <library/version.h) |
33 | ( cd include/qpe && rm -f *.h; ln -s ../../library/*.h .; ln -s ../../library/backend/*.h .; rm -f *_p.h; ) |
33 | VERSION_MIN=$(sed -n -e 's/.*QPE_VERSION "[0-9]*\.\([0-9]\)\.[0-9]*.*".*/\1/p' <library/version.h) |
34 | |
34 | VERSION_PAT=$(sed -n -e 's/.*QPE_VERSION "[0-9]*\.[0-9]*\.\([0-9]*\).*".*/\1/p' <library/version.h) |
35 | VERSION_MAJ=$(sed -n -e 's/.*QPE_VERSION "\([0-9]*\)\.[0-9]*\.[0-9]*.*".*/\1/p' <include/qpe/version.h) |
| |
36 | VERSION_MIN=$(sed -n -e 's/.*QPE_VERSION "[0-9]*\.\([0-9]\)\.[0-9]*.*".*/\1/p' <include/qpe/version.h) |
| |
37 | VERSION_PAT=$(sed -n -e 's/.*QPE_VERSION "[0-9]*\.[0-9]*\.\([0-9]*\).*".*/\1/p' <include/qpe/version.h) |
| |
38 | |
35 | |
39 | TOMAKE= |
36 | TOMAKE= |
40 | |
37 | |
@@ -117,6 +114,14 @@ EOF |
117 | exit 0; |
114 | exit 0; |
118 | fi |
115 | fi |
119 | |
116 | |
| |
117 | if [ -f library/custom-$PLATFORM.h ] |
| |
118 | then |
| |
119 | rm -f library/custom.h |
| |
120 | ln -s custom-$PLATFORM.h library/custom.h |
| |
121 | fi |
| |
122 | |
| |
123 | mkdir -p include/qpe |
| |
124 | ( cd include/qpe && rm -f *.h; ln -s ../../library/*.h .; ln -s ../../library/backend/*.h .; rm -f *_p.h; ) |
120 | |
125 | |
121 | echo Creating makefiles... |
126 | echo Creating makefiles... |
122 | |
127 | |
|