|
diff --git a/configure b/configure index 9de0276..0241adf 100755 --- a/ configure+++ b/ configure |
|
@@ -184,86 +184,86 @@ for a in $TOMAKE ; do |
184 | then |
184 | then |
185 | if [ $appname != $translation ] |
185 | if [ $appname != $translation ] |
186 | then |
186 | then |
187 | echo |
187 | echo |
188 | echo "Warning: translation and appname disagree in $a/$f.pro" |
188 | echo "Warning: translation and appname disagree in $a/$f.pro" |
189 | fi |
189 | fi |
190 | fi |
190 | fi |
191 | |
191 | |
192 | fi |
192 | fi |
193 | |
193 | |
194 | cat > $N <<EOF |
194 | cat > $N <<EOF |
195 | ############################################################################# |
195 | ############################################################################# |
196 | # Automatically generated from $M |
196 | # Automatically generated from $M |
197 | # Build options from $1 |
197 | # Build options from $1 |
198 | ############################################################################# |
198 | ############################################################################# |
199 | |
199 | |
200 | EOF |
200 | EOF |
201 | |
201 | |
202 | SED= |
202 | SED= |
203 | PLATFORM_CFLAGS= |
203 | PLATFORM_CFLAGS= |
204 | |
204 | |
205 | if [ "$f" = "embeddedkonsole" ] |
205 | if [ "$f" = "embeddedkonsole" ] |
206 | then |
206 | then |
207 | case $PLATFORM in |
207 | case $PLATFORM in |
208 | *x86*|*generic*|*ipaq*) |
208 | *x86*|*generic*|*ipaq*|*sharp*) |
209 | SED="$SED /^LIBS.*=/s/\$/ -lutil/;" |
209 | SED="$SED /^LIBS.*=/s/\$/ -lutil/;" |
210 | PLATFORM_CFLAGS="-DHAVE_OPENPTY" |
210 | PLATFORM_CFLAGS="-DHAVE_OPENPTY" |
211 | ;; *) |
211 | ;; *) |
212 | SED= |
212 | SED= |
213 | esac |
213 | esac |
214 | elif [ "$f" = "libmpeg3" ] |
214 | elif [ "$f" = "libmpeg3" ] |
215 | then |
215 | then |
216 | # Patch our Makefile.in file with the platform specifics for the libmpeg3 library |
216 | # Patch our Makefile.in file with the platform specifics for the libmpeg3 library |
217 | # Use the C++ compiler to compile the .c files (because the fixed-point classes are C++ code) |
217 | # Use the C++ compiler to compile the .c files (because the fixed-point classes are C++ code) |
218 | SED='s/\$(CC)/\$(CXX)/;' |
218 | SED='s/\$(CC)/\$(CXX)/;' |
219 | case $PLATFORM |
219 | case $PLATFORM |
220 | in |
220 | in |
221 | # For x86 turn on using floating point, compile mmx and css code |
221 | # For x86 turn on using floating point, compile mmx and css code |
222 | *x86*) |
222 | *x86*) |
223 | # "-funroll-loops -fomit-frame-pointer -malign-loops=2 -malign-jumps=2 -malign-functions=2 -march=i486" |
223 | # "-funroll-loops -fomit-frame-pointer -malign-loops=2 -malign-jumps=2 -malign-functions=2 -march=i486" |
224 | PLATFORM_CFLAGS="-DHAVE_MMX -DHAVE_CSS" |
224 | PLATFORM_CFLAGS="-DHAVE_MMX -DHAVE_CSS" |
225 | SED="$SED /SOURCES.*=/s/=/= video\\/mmxidct.S video\\/reconmmx.s\ /;" |
225 | SED="$SED /SOURCES.*=/s/=/= video\\/mmxidct.S video\\/reconmmx.s\ /;" |
226 | # For generic turn on using floating point |
226 | # For generic turn on using floating point |
227 | ;; *generic*) |
227 | ;; *generic*) |
228 | PLATFORM_CFLAGS="" |
228 | PLATFORM_CFLAGS="" |
229 | # For the ipaq use fixed point maths, don't compile the mmx or css code |
229 | # For the ipaq use fixed point maths, don't compile the mmx or css code |
230 | ;; *ipaq*) |
230 | ;; *ipaq*|*sharp*) |
231 | PLATFORM_CFLAGS="-DUSE_FIXED_POINT" |
231 | PLATFORM_CFLAGS="-DUSE_FIXED_POINT" |
232 | ;; *) |
232 | ;; *) |
233 | # For 'other platforms', turn off optimizations and use fixed point |
233 | # For 'other platforms', turn off optimizations and use fixed point |
234 | PLATFORM_CFLAGS="-O -DUSE_FIXED_POINT" |
234 | PLATFORM_CFLAGS="-O -DUSE_FIXED_POINT" |
235 | esac |
235 | esac |
236 | elif [ "$f" = "libmad" ] |
236 | elif [ "$f" = "libmad" ] |
237 | then |
237 | then |
238 | # Patch our Makefile.in file with the platform specifics for the libmad library |
238 | # Patch our Makefile.in file with the platform specifics for the libmad library |
239 | case $PLATFORM |
239 | case $PLATFORM |
240 | in |
240 | in |
241 | # For x86 use intel optimizations |
241 | # For x86 use intel optimizations |
242 | *x86*) |
242 | *x86*) |
243 | PLATFORM_CFLAGS="-DFPM_INTEL" |
243 | PLATFORM_CFLAGS="-DFPM_INTEL" |
244 | # For the ipaq use ARM asm optimizations |
244 | # For the ipaq use ARM asm optimizations |
245 | ;; *ipaq*) |
245 | ;; *ipaq*|*sharp*) |
246 | PLATFORM_CFLAGS="-DFPM_ARM" |
246 | PLATFORM_CFLAGS="-DFPM_ARM" |
247 | SED="$SED /SOURCES.*=/s/=/= idmt_arm.S /;" |
247 | SED="$SED /SOURCES.*=/s/=/= idmt_arm.S /;" |
248 | # For generic platforms use the C 64-bit implementation |
248 | # For generic platforms use the C 64-bit implementation |
249 | ;; *generic*) |
249 | ;; *generic*) |
250 | PLATFORM_CFLAGS="-DFPM_64BIT" |
250 | PLATFORM_CFLAGS="-DFPM_64BIT" |
251 | # For 'other platforms' use the ARM code |
251 | # For 'other platforms' use the ARM code |
252 | ;; *) |
252 | ;; *) |
253 | PLATFORM_CFLAGS="-DFPM_ARM" |
253 | PLATFORM_CFLAGS="-DFPM_ARM" |
254 | SED="$SED /SOURCES.*=/s/=/= idmt_arm.S /;" |
254 | SED="$SED /SOURCES.*=/s/=/= idmt_arm.S /;" |
255 | esac |
255 | esac |
256 | fi |
256 | fi |
257 | if [ -n "$PLATFORM_CFLAGS" ] |
257 | if [ -n "$PLATFORM_CFLAGS" ] |
258 | then |
258 | then |
259 | # Append the addition c-flags we have defined |
259 | # Append the addition c-flags we have defined |
260 | SED="$SED /CFLAGS.*=.*/s/\$/ $PLATFORM_CFLAGS/;" |
260 | SED="$SED /CFLAGS.*=.*/s/\$/ $PLATFORM_CFLAGS/;" |
261 | SED="$SED /CXXFLAGS.*=.*/s/\$/ $PLATFORM_CFLAGS/;" |
261 | SED="$SED /CXXFLAGS.*=.*/s/\$/ $PLATFORM_CFLAGS/;" |
262 | fi |
262 | fi |
263 | cat $TARGET >> $N |
263 | cat $TARGET >> $N |
264 | if [ -n "$SED" ] |
264 | if [ -n "$SED" ] |
265 | then |
265 | then |
266 | sed -e "$SED" $M >> $N |
266 | sed -e "$SED" $M >> $N |
267 | else |
267 | else |
268 | cat $M >> $N |
268 | cat $M >> $N |
269 | fi |
269 | fi |
|