From 5a3d6981e7af79f3f12f6cfac128a9ced007357e Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Fri, 29 Apr 2005 02:10:36 +0000 Subject: [PATCH] remove AC_CANONICAL_TARGET and use $host* variables instead of $target* variables since thats how it works SVN revision: 14462 --- legacy/evas/configure.in | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/legacy/evas/configure.in b/legacy/evas/configure.in index ef7e30bbf6..710970a1ae 100644 --- a/legacy/evas/configure.in +++ b/legacy/evas/configure.in @@ -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" ;;