Merge commit 'refs/top-bases/linux-have-idmap' into linux-have-idmap

This commit is contained in:
Brian Behlendorf 2010-05-18 12:32:47 -07:00
commit 619efe1f74
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 # 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 arch) AC_MSG_CHECKING(for target asm dir)
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|powerpc64) i386|x86_64)
AC_SUBST([TARGET_ARCH]) TARGET_ASM_DIR=asm-${TARGET_ARCH}
AC_SUBST([TARGET_ARCH_DIR])
;; ;;
*) *)
AC_MSG_ERROR([ TARGET_ASM_DIR=asm-generic
*** Unsupported architecture $TARGET_ARCH
*** Available architectures: x86, x86_64, powerpc64])
;; ;;
esac esac
AC_SUBST([TARGET_ASM_DIR])
AC_MSG_RESULT([$TARGET_ASM_DIR])
]) ])