Move user-arch.m4 change from linux-libspl to zfs-branch.

This commit is contained in:
Brian Behlendorf 2010-05-18 12:25:15 -07:00
parent 73e29123bc
commit f5d944f935
1 changed files with 9 additions and 7 deletions

View File

@ -2,18 +2,20 @@ dnl #
dnl # Set the target arch for libspl atomic implementation dnl # Set the target arch for libspl atomic implementation
dnl # dnl #
AC_DEFUN([ZFS_AC_CONFIG_USER_ARCH], [ AC_DEFUN([ZFS_AC_CONFIG_USER_ARCH], [
AC_MSG_CHECKING(for target asm dir) AC_MSG_CHECKING(for target arch)
TARGET_ARCH=`echo ${target_cpu} | sed -e s/i.86/i386/` TARGET_ARCH=`echo ${target_cpu} | sed -e s/i.86/i386/`
TARGET_ARCH_DIR=asm-$TARGET_ARCH
AC_MSG_RESULT([$TARGET_ARCH])
case $TARGET_ARCH in case $TARGET_ARCH in
i386|x86_64) i386|x86_64|powerpc64)
TARGET_ASM_DIR=asm-${TARGET_ARCH} AC_SUBST([TARGET_ARCH])
AC_SUBST([TARGET_ARCH_DIR])
;; ;;
*) *)
TARGET_ASM_DIR=asm-generic AC_MSG_ERROR([
*** Unsupported architecture $TARGET_ARCH
*** Available architectures: x86, x86_64, powerpc64])
;; ;;
esac esac
AC_SUBST([TARGET_ASM_DIR])
AC_MSG_RESULT([$TARGET_ASM_DIR])
]) ])