author | kergoth <kergoth> | 2002-05-02 21:43:34 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2002-05-02 21:43:34 (UTC) |
commit | 6ebb8228b660634b4ca8a2a5bf05aef828e39f31 (patch) (unidiff) | |
tree | 4a0fb8baf226a15c755996280026300f2e2f6e8e | |
parent | 7833ad013239d04669edd54041287563a47728ec (diff) | |
download | opie-6ebb8228b660634b4ca8a2a5bf05aef828e39f31.zip opie-6ebb8228b660634b4ca8a2a5bf05aef828e39f31.tar.gz opie-6ebb8228b660634b4ca8a2a5bf05aef828e39f31.tar.bz2 |
-
-rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -202,13 +202,13 @@ EOF | |||
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" ] |
@@ -224,13 +224,13 @@ EOF | |||
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" ] |
@@ -239,13 +239,13 @@ EOF | |||
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 |