summaryrefslogtreecommitdiffstats
path: root/openwrt/package
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-12-16 19:19:22 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-12-16 19:19:22 +0000
commit666a3f3839ab66176c1b78e3d98c866372a8714b (patch)
tree0be41c9ccd3e1d0b4920c533110a5abcb0b26cce /openwrt/package
parent288dcc978a91ac878059328b0521339cd1e38f62 (diff)
use target optimization cflags for ilbc codec
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2707 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package')
-rw-r--r--openwrt/package/asterisk/patches/asterisk-1.2.1-Makefile-codecs-ilbc.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/openwrt/package/asterisk/patches/asterisk-1.2.1-Makefile-codecs-ilbc.patch b/openwrt/package/asterisk/patches/asterisk-1.2.1-Makefile-codecs-ilbc.patch
new file mode 100644
index 000000000..875f26fa0
--- /dev/null
+++ b/openwrt/package/asterisk/patches/asterisk-1.2.1-Makefile-codecs-ilbc.patch
@@ -0,0 +1,21 @@
+diff -ruN asterisk-1.2.1-old/codecs/ilbc/Makefile asterisk-1.2.1-new/codecs/ilbc/Makefile
+--- asterisk-1.2.1-old/codecs/ilbc/Makefile 2005-11-29 19:24:39.000000000 +0100
++++ asterisk-1.2.1-new/codecs/ilbc/Makefile 2005-12-16 19:24:36.000000000 +0100
+@@ -1,5 +1,5 @@
+ ARCH=$(PROC)
+-CFLAGS+=-Wall -O3 -funroll-loops
++CFLAGS+=-Wall $(OPTIMIZE) -funroll-loops
+ ifneq (${OSARCH},CYGWIN)
+ CFLAGS += -fPIC
+ endif
+@@ -15,8 +15,8 @@
+
+
+ $(LIB): $(OBJS)
+- ar cr $(LIB) $(OBJS)
+- ranlib $(LIB)
++ $(AR) cr $(LIB) $(OBJS)
++ $(RANLIB) $(LIB)
+
+ clean:
+ rm -f $(LIB) *.o