remove AC_CANONICAL_TARGET and use $host* variables instead of $target* variables since thats how it works

SVN revision: 14462
This commit is contained in:
Mike Frysinger 2005-04-29 02:10:36 +00:00
parent b819c28acd
commit 5a3d6981e7
1 changed files with 3 additions and 4 deletions

View File

@ -4,7 +4,6 @@ rm -f config.cache
AC_INIT(configure.in)
AC_CANONICAL_BUILD
AC_CANONICAL_HOST
AC_CANONICAL_TARGET
AC_ISC_POSIX
AM_INIT_AUTOMAKE(evas, 0.9.9.005)
AM_CONFIG_HEADER(config.h)
@ -695,7 +694,7 @@ fi
#######################################
## MMX
build_cpu_mmx="no"
case $target_cpu in
case $host_cpu in
i*86)
build_cpu_mmx="yes"
;;
@ -723,7 +722,7 @@ AC_ARG_ENABLE(cpu-mmx,
#######################################
## SSE
build_cpu_sse="no"
case $target_cpu in
case $host_cpu in
i*86)
build_cpu_sse="yes"
;;
@ -751,7 +750,7 @@ AC_ARG_ENABLE(cpu-sse,
#######################################
## ALTIVEC
build_cpu_altivec="no"
case $target_cpu in
case $host_cpu in
*power* | *ppc*)
build_cpu_altivec="yes"
;;