summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmil Velikov <emil.velikov@collabora.com>2016-01-20 10:27:31 +0200
committerEmil Velikov <emil.l.velikov@gmail.com>2016-03-02 11:11:09 +0000
commit60a48fe62ecbabc5a2c485196aed71cabcb217e7 (patch)
treee02fdaf920fad0e1d25d2a72a6b79bb538ba8d67
parent61b3ad1d6f27637b581c71b94aa20fbd61a09553 (diff)
configure.ac: remove sparc asm handling
Since the code is no longer around we should not be lying to the user that such a thing exists. v2: tweak commit message (Arthur Huillet) Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
-rw-r--r--configure.ac12
1 files changed, 0 insertions, 12 deletions
diff --git a/configure.ac b/configure.ac
index aad3bb5..7f80b51 100644
--- a/configure.ac
+++ b/configure.ac
@@ -99,13 +99,6 @@ if test "x$enable_asm" = xyes; then
armv7l)
asm_arch=armv7l
;;
- sparc*)
- case "$host_os" in
- linux*)
- asm_arch=sparc
- ;;
- esac
- ;;
esac
case "$asm_arch" in
@@ -121,10 +114,6 @@ if test "x$enable_asm" = xyes; then
DEFINES="$DEFINES -DUSE_ARMV7_ASM"
AC_MSG_RESULT([yes, armv7l])
;;
- sparc)
- DEFINES="$DEFINES -DUSE_SPARC_ASM"
- AC_MSG_RESULT([yes, sparc])
- ;;
*)
AC_MSG_RESULT([no, platform not supported])
;;
@@ -143,7 +132,6 @@ AC_SUBST([MAPI_MESA_PREFIX], [src/GLdispatch/mesa])
AM_CONDITIONAL(HAVE_X86_ASM, echo "$DEFINES" | grep 'X86_ASM' >/dev/null 2>&1)
AM_CONDITIONAL(HAVE_X86_64_ASM, echo "$DEFINES" | grep 'X86_64_ASM' >/dev/null 2>&1)
-AM_CONDITIONAL(HAVE_SPARC_ASM, echo "$DEFINES" | grep 'SPARC_ASM' >/dev/null 2>&1)
dnl Checks for libraries.
AX_PTHREAD()