From e22ce3e61105c04c609e66ebd2d6e24f6799dd70 Mon Sep 17 00:00:00 2001 From: Steve Underwood Date: Tue, 25 Dec 2012 03:14:59 +0800 Subject: [PATCH] Improved detection of machines that need fixed point support --- libs/spandsp/m4/ax_fixed_point_machine.m4 | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libs/spandsp/m4/ax_fixed_point_machine.m4 b/libs/spandsp/m4/ax_fixed_point_machine.m4 index 51679a5a98..d9309986c1 100644 --- a/libs/spandsp/m4/ax_fixed_point_machine.m4 +++ b/libs/spandsp/m4/ax_fixed_point_machine.m4 @@ -14,15 +14,15 @@ AC_DEFUN([AX_FIXED_POINT_MACHINE], [AS_VAR_PUSHDEF([ac_FixedPoint], [ac_cv_fixed_point_machine_$1])dnl AC_CACHE_CHECK([if $1 is fixed point only], ac_FixedPoint, [case $1 in - arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] \ - | bfin \ + arc \ + | arm | arm[bl]e | arme[bl] | armv[2345] | armv[345][bl] \ + | arm-* | arm[bl]e-* | arme[bl]-* | armv[345]-* \ + | bfin | bfin-* \ | mips | mipsbe | mipseb | mipsel | mipsle \ - | tic54x | c54x* | tic55x | c55x* | tic6x | c6x* \ - | xscale | xscalee[bl] \ - | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ - | bfin-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ + | tic54x | c54x* | tic55x | c55x* | tic6x | c6x* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ + | xscale | xscalee[bl] \ | xscale-* | xscalee[bl]-* ) AS_VAR_SET(ac_FixedPoint, yes) ;;