aboutsummaryrefslogtreecommitdiffstats
path: root/codecs
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2006-03-30 21:44:03 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2006-03-30 21:44:03 +0000
commit7f151a6f53ef6a7bfa8d4a0012d0a030d8d6a1ed (patch)
treef8cac77f95410956b46e0cba264ed54d2fdbacdb /codecs
parent6de71be154abf1d2f776714afa5bada0aa04edaf (diff)
Add another check for 64-bit goodness (issue #6850 reported by evilbunny)
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@16559 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'codecs')
-rw-r--r--codecs/gsm/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/codecs/gsm/Makefile b/codecs/gsm/Makefile
index 5fb815c50..5da9cd465 100644
--- a/codecs/gsm/Makefile
+++ b/codecs/gsm/Makefile
@@ -40,6 +40,7 @@ WAV49 = -DWAV49
ifneq (${OSARCH},Darwin)
ifneq (${OSARCH},SunOS)
ifneq (${PROC},x86_64)
+ifneq (${PROC},amd64)
ifneq (${PROC},ultrasparc)
ifneq ($(shell uname -m),ppc)
ifneq ($(shell uname -m),ppc64)
@@ -62,6 +63,7 @@ endif
endif
endif
endif
+endif
#The problem with sparc is the best stuff is in newer versions of gcc (post 3.0) only.
#This works for even old (2.96) versions of gcc and provides a small boost either way.
@@ -230,6 +232,7 @@ GSM_SOURCES = $(SRC)/add.c \
$(SRC)/table.c
ifeq (${OSARCH},Linux)
ifneq ($(shell uname -m),x86_64)
+ifneq ($(shell uname -m),amd64)
ifneq ($(shell uname -m),ppc)
ifneq ($(shell uname -m),ppc64)
ifneq ($(shell uname -m),alpha)
@@ -247,6 +250,7 @@ endif
endif
endif
endif
+endif
TOAST_SOURCES = $(SRC)/toast.c \
$(SRC)/toast_lin.c \
@@ -294,6 +298,7 @@ GSM_OBJECTS = $(SRC)/add.o \
ifeq (${OSARCH},Linux)
ifneq ($(shell uname -m), x86_64)
+ifneq ($(shell uname -m), amd64)
ifneq ($(shell uname -m), ppc)
ifneq ($(shell uname -m), ppc64)
ifneq ($(shell uname -m), alpha)
@@ -309,6 +314,7 @@ endif
endif
endif
endif
+endif
TOAST_OBJECTS = $(SRC)/toast.o \
$(SRC)/toast_lin.o \