summaryrefslogtreecommitdiff
path: root/codecs/lpc10
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-08-31 03:31:59 +0000
committerMark Spencer <markster@digium.com>2004-08-31 03:31:59 +0000
commit8ff9c0d1b93e520b934deb6b44d4daddf679b99c (patch)
tree489844c86c78613bfbbd1084ff82dbff1c48ff7d /codecs/lpc10
parentb48987922cbc1732af7990675b1b899739efaf92 (diff)
Adjust Makefiles to support Ultrasparc architecture (thanks Belgarath) (bug #2319)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3684 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'codecs/lpc10')
-rwxr-xr-xcodecs/lpc10/Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/codecs/lpc10/Makefile b/codecs/lpc10/Makefile
index cd1e973ef..f747e64a5 100755
--- a/codecs/lpc10/Makefile
+++ b/codecs/lpc10/Makefile
@@ -25,13 +25,17 @@ WARNINGS = -Wall -Wno-comment -Wno-error
CFLAGS += $(OPTIMIZE) -I$(LIB_TARGET_DIR) $(WARNINGS) -fPIC
#CFLAGS+= $(shell if uname -m | grep -q 86; then echo "-mpentium" ; fi)
-#fix for PPC processors and ALPHA too
+#fix for PPC processors and ALPHA, And UltraSparc too
ifneq ($(OSARCH),Darwin)
ifneq ($(findstring BSD,${OSARCH}),BSD)
ifneq ($(PROC),ppc)
ifneq ($(PROC),x86_64)
ifneq ($(PROC),alpha)
- CFLAGS+= -march=$(PROC)
+ifeq ($(PROC),ultrasparc)
+ CFLAGS+= -mtune=$(PROC)
+else
+ CFLAGS+= -march=$(PROC)
+endif
endif
endif
endif