From: Josh Coalson Date: Wed, 23 May 2001 22:08:27 +0000 (+0000) Subject: switch from AC_CANONICAL_TARGET to AC_CANONICAL_HOST X-Git-Tag: 1.2.0~2369 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=def8eb85b3705a6feb7cbb20e6b7c9d6d3a95724;p=platform%2Fupstream%2Fflac.git switch from AC_CANONICAL_TARGET to AC_CANONICAL_HOST --- diff --git a/configure.in b/configure.in index 2704d9e..065a40a 100644 --- a/configure.in +++ b/configure.in @@ -1,4 +1,4 @@ -# note that for many of the conditionals we use the prefix FLaC__ +# NOTE that for many of the conditionals we use the prefix FLaC__ # instead of FLAC__ since autoconf triggers off 'AC_' in strings AC_INIT(src/flac/main.c) @@ -13,8 +13,8 @@ chmod +x libtool-disable-static AC_PROG_MAKE_SET -AC_CANONICAL_TARGET -case $target_cpu in +AC_CANONICAL_HOST +case $host_cpu in i*86) cpu_ia32=true ;; powerpc) cpu_ppc=true ;; sparc) cpu_sparc=true ;;