From 666a3f3839ab66176c1b78e3d98c866372a8714b Mon Sep 17 00:00:00 2001 From: nico Date: Fri, 16 Dec 2005 19:19:22 +0000 Subject: [PATCH] use target optimization cflags for ilbc codec git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2707 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- .../asterisk-1.2.1-Makefile-codecs-ilbc.patch | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 openwrt/package/asterisk/patches/asterisk-1.2.1-Makefile-codecs-ilbc.patch 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 0000000000..875f26fa04 --- /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 -- 2.39.5