diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-07-11 12:48:09 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-07-11 12:48:09 +0000 |
commit | 804c78b471c1e447cf4431f7afdfd6e0b20b75d0 (patch) | |
tree | 7196b03459252abed6f51691e6558b6f61d6d96f /openwrt/package/asterisk/patches/asterisk-1.0.9-Makefile-codecs-gsm.patch | |
parent | cdea47b22effe86885cb0517fe5bdf02d95d1a76 (diff) |
Update to new upstream release (v1.0.9),
Split makefile patch into multiple patches,
Add no-gtk fix from whiterussian.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1402 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/asterisk/patches/asterisk-1.0.9-Makefile-codecs-gsm.patch')
-rw-r--r-- | openwrt/package/asterisk/patches/asterisk-1.0.9-Makefile-codecs-gsm.patch | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/openwrt/package/asterisk/patches/asterisk-1.0.9-Makefile-codecs-gsm.patch b/openwrt/package/asterisk/patches/asterisk-1.0.9-Makefile-codecs-gsm.patch new file mode 100644 index 000000000..3030e780c --- /dev/null +++ b/openwrt/package/asterisk/patches/asterisk-1.0.9-Makefile-codecs-gsm.patch @@ -0,0 +1,80 @@ +diff -ruN asterisk-1.0.9-old/codecs/gsm/Makefile asterisk-1.0.9-new/codecs/gsm/Makefile +--- asterisk-1.0.9-old/codecs/gsm/Makefile 2005-06-21 16:27:28.000000000 +0200 ++++ asterisk-1.0.9-new/codecs/gsm/Makefile 2005-07-11 13:36:12.000000000 +0200 +@@ -40,12 +40,12 @@ + ifneq (${OSARCH},Darwin) + ifneq (${PROC},x86_64) + ifneq (${PROC},ultrasparc) +-ifneq ($(shell uname -m),ppc) +-ifneq ($(shell uname -m),alpha) +-ifneq ($(shell uname -m),armv4l) ++ifneq (${PROC},alpha) ++ifneq (${PROC},armv4l) + ifneq (${PROC},sparc64) + ifneq (${PROC},ppc) + ifneq (${PROC},ppc64) ++ifneq (${PROC},mipsel) + OPTIMIZE+=-march=$(PROC) + endif + endif +@@ -84,7 +84,7 @@ + # CCFLAGS = -c -O + + CC ?= gcc +-CCFLAGS += -c -DNeedFunctionPrototypes=1 -funroll-loops -fPIC $(OPTIMIZE) -fomit-frame-pointer ++CCFLAGS += -c -DNeedFunctionPrototypes=1 -fPIC $(OPTIMIZE) + + LD = $(CC) + +@@ -219,11 +219,12 @@ + $(SRC)/short_term.c \ + $(SRC)/table.c + ifeq (${OSARCH},Linux) +-ifneq ($(shell uname -m),x86_64) +-ifneq ($(shell uname -m),ppc) +-ifneq ($(shell uname -m),alpha) +-ifneq ($(shell uname -m),armv4l) +-ifneq ($(shell uname -m),sparc64) ++ifneq (${PROC},x86_64) ++ifneq (${PROC},ppc) ++ifneq (${PROC},alpha) ++ifneq (${PROC},armv4l) ++ifneq (${PROC},sparc64) ++ifneq ($(PROC),mipsel) + GSM_SOURCES+= $(SRC)/k6opt.s + endif + endif +@@ -231,6 +232,7 @@ + endif + endif + endif ++endif + + TOAST_SOURCES = $(SRC)/toast.c \ + $(SRC)/toast_lin.c \ +@@ -277,11 +279,12 @@ + $(SRC)/table.o + + ifeq (${OSARCH},Linux) +-ifneq ($(shell uname -m), x86_64) +-ifneq ($(shell uname -m), ppc) +-ifneq ($(shell uname -m), alpha) +-ifneq ($(shell uname -m), armv4l) +-ifneq ($(shell uname -m), sparc64) ++ifneq (${PROC}, x86_64) ++ifneq (${PROC}, ppc) ++ifneq (${PROC}, alpha) ++ifneq (${PROC}, armv4l) ++ifneq (${PROC}, sparc64) ++ifneq ($(PROC), mipsel) + GSM_OBJECTS+= $(SRC)/k6opt.o + endif + endif +@@ -289,6 +292,7 @@ + endif + endif + endif ++endif + + TOAST_OBJECTS = $(SRC)/toast.o \ + $(SRC)/toast_lin.o \ |