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

This commit is contained in:
Brian Behlendorf 2010-05-18 12:26:48 -07:00
parent d115e15d29
commit 13ad721a84
1 changed files with 7 additions and 9 deletions

View File

@ -2,20 +2,18 @@ dnl #
dnl # Set the target arch for libspl atomic implementation
dnl #
AC_DEFUN([ZFS_AC_CONFIG_USER_ARCH], [
AC_MSG_CHECKING(for target arch)
AC_MSG_CHECKING(for target asm dir)
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
i386|x86_64|powerpc64)
AC_SUBST([TARGET_ARCH])
AC_SUBST([TARGET_ARCH_DIR])
i386|x86_64)
TARGET_ASM_DIR=asm-${TARGET_ARCH}
;;
*)
AC_MSG_ERROR([
*** Unsupported architecture $TARGET_ARCH
*** Available architectures: x86, x86_64, powerpc64])
TARGET_ASM_DIR=asm-generic
;;
esac
AC_SUBST([TARGET_ASM_DIR])
AC_MSG_RESULT([$TARGET_ASM_DIR])
])