Unidiff1 files changed, 12 insertions, 7 deletions
|
diff --git a/configure b/configure index 7824e36..3b474c6 100755 --- a/ configure+++ b/ configure |
|
@@ -6,5 +6,5 @@ |
6 | # |
6 | # |
7 | |
7 | |
8 | PLATFORM=linux-generic-g++ |
8 | PLATFORM=generic |
9 | SHARING=shared |
9 | SHARING=shared |
10 | DEBUG= |
10 | DEBUG= |
@@ -30,10 +30,7 @@ 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= |
@@ -118,4 +115,12 @@ EOF |
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... |
|