aboutsummaryrefslogtreecommitdiffstats
path: root/codecs
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-02-17 00:31:42 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-02-17 00:31:42 +0000
commit2a06c64dfb46da96f3906b8a68cae0b8a331a4ee (patch)
tree27de8eedd02fb0bae307ce60a75b8077113f72cc /codecs
parentb3aca5df228e9d83424e8fe30bd6b3ed96585b02 (diff)
Filter out yet another architecture that does not work with the optimizations
in the built-in libgsm. (issue 8637, ovi) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@55050 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'codecs')
-rw-r--r--codecs/gsm/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/codecs/gsm/Makefile b/codecs/gsm/Makefile
index d5b5c8608..bb783a454 100644
--- a/codecs/gsm/Makefile
+++ b/codecs/gsm/Makefile
@@ -209,7 +209,7 @@ GSM_SOURCES = $(SRC)/add.c \
# XXX should merge with GSM_OBJECTS
ifeq ($(OSARCH),linux-gnu)
ifeq (,$(findstring $(shell uname -m) , x86_64 amd64 ppc ppc64 alpha armv4l sparc64 parisc s390 ))
-ifeq (,$(findstring $(PROC) , arm armv5b armeb ia64 s390 bfin mipsel ))
+ifeq (,$(findstring $(PROC) , arm armv5b armeb powerpc ia64 s390 bfin mipsel ))
GSM_SOURCES+= $(SRC)/k6opt.s
endif
endif
@@ -261,7 +261,7 @@ GSM_OBJECTS = $(SRC)/add.o \
ifeq ($(OSARCH),linux-gnu)
ifeq (,$(findstring $(shell uname -m) , x86_64 amd64 ppc ppc64 alpha armv4l sparc64 parisc ))
-ifeq (,$(findstring $(PROC) , arm armv5b armeb ia64 bfin mipsel ))
+ifeq (,$(findstring $(PROC) , arm armv5b armeb powerpc ia64 bfin mipsel ))
GSM_OBJECTS+= $(SRC)/k6opt.o
endif
endif