forked from pool/xine-lib
32 lines
1.1 KiB
Diff
32 lines
1.1 KiB
Diff
From c781f4b2e726fa3fabf8cc0cdd592f617ae799e2 Mon Sep 17 00:00:00 2001
|
|
From: Ludwig Nussel <ludwig.nussel@suse.de>
|
|
Date: Fri, 25 Jul 2008 16:58:56 +0200
|
|
Subject: [PATCH] ia64 is not alpha
|
|
|
|
---
|
|
configure.ac | 5 ++++-
|
|
1 files changed, 4 insertions(+), 1 deletions(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index af881fc..93b2a95 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -2332,10 +2332,13 @@ case "$host_or_hostalias" in
|
|
mips-*)
|
|
AC_DEFINE_UNQUOTED(FPM_MIPS,,[Define to select libmad fixed point arithmetic implementation])
|
|
;;
|
|
- alphaev56-* | alpha* | ia64-* | hppa*-linux-*)
|
|
+ alphaev56-* | alpha* | hppa*-linux-*)
|
|
AC_DEFINE_UNQUOTED(FPM_64BIT,,[Define to select libmad fixed point arithmetic implementation])
|
|
AC_DEFINE_UNQUOTED(ARCH_ALPHA,,[Define this if you're running Alpha architecture])
|
|
;;
|
|
+ ia64-*)
|
|
+ AC_DEFINE_UNQUOTED(FPM_64BIT,,[Define to select libmad fixed point arithmetic implementation])
|
|
+ ;;
|
|
armv4l-*-linux*)
|
|
AC_DEFINE_UNQUOTED(FPM_ARM,,[Define to select libmad fixed point arithmetic implementation])
|
|
AC_DEFINE_UNQUOTED(ARCH_ARM,,[Define this if you're running ARM architecture])
|
|
--
|
|
1.5.6
|
|
|