asterisk-opus: update to git master as of 2021-11-01

Setting AST_MODULE_SELF_SYM is no longer required.

Update the Makefile patch for the new version, the functional changes are
the same except the added -Wall compiler flag.

Switch to AUTORELEASE while at it.

Signed-off-by: Andre Heider <a.heider@gmail.com>
This commit is contained in:
Andre Heider 2021-10-18 14:04:04 +02:00
parent 8c4b67dfe2
commit 5bb38c2f09
2 changed files with 15 additions and 13 deletions

View file

@ -8,12 +8,12 @@
include $(TOPDIR)/rules.mk include $(TOPDIR)/rules.mk
PKG_NAME:=asterisk-opus PKG_NAME:=asterisk-opus
PKG_RELEASE:=1 PKG_RELEASE:=$(AUTORELEASE)
PKG_SOURCE_URL:=https://github.com/traud/asterisk-opus.git PKG_SOURCE_URL:=https://github.com/traud/asterisk-opus.git
PKG_SOURCE_DATE:=2017-10-09 PKG_SOURCE_DATE:=2021-11-01
PKG_SOURCE_VERSION:=83e1b458c77e0e287adeca494eeb79edb077b0ff PKG_SOURCE_VERSION:=20522fbcd3fdf6f0adb20602d096d14cd69055e8
PKG_MIRROR_HASH:=c71b859db7518cdafff1650e629c5901b290fe68f8af54ef1afd57bc9f15b122 PKG_MIRROR_HASH:=e14dc42b0e5f4720e3f028e0b426f4e660bf315a103a015820ca3697e1fe9985
PKG_SOURCE_PROTO:=git PKG_SOURCE_PROTO:=git
PKG_LICENSE:=GPL-2.0 PKG_LICENSE:=GPL-2.0
@ -23,7 +23,6 @@ PKG_MAINTAINER:=Jiri Slachta <jiri@slachta.eu>
include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/package.mk
TARGET_CFLAGS += \ TARGET_CFLAGS += \
-DAST_MODULE_SELF_SYM=__internal_codec_opus_open_source_self \
$(FPIC) $(FPIC)
define Package/asterisk-codec-opus define Package/asterisk-codec-opus

View file

@ -1,18 +1,21 @@
--- a/Makefile --- a/Makefile
+++ b/Makefile +++ b/Makefile
@@ -3,17 +3,17 @@ exec_prefix=$(prefix) @@ -5,18 +5,18 @@ libdir=$(exec_prefix)/lib
libdir=$(exec_prefix)/lib # build with `make OPUSENC=0` to disable rewrite support using libopusenc
OPUSENC?=1
CC=gcc -CFLAGS=-pthread -D_FORTIFY_SOURCE=2 -fPIC
-CFLAGS=-pthread -g3 -O3 -D_FORTIFY_SOURCE=2 -fPIC -DEBUG=-g3
+CFLAGS+=-pthread -OPTIMIZE=-O3
+CFLAGS+=-Wall -pthread
+DEBUG=
+OPTIMIZE=
CPPFLAGS= CPPFLAGS=
DEFS= DEFS=
INSTALL=/usr/bin/install -c INSTALL=/usr/bin/install -c
-LDFLAGS=-shared -pthread -Wl,--warn-common -LDFLAGS=-pthread -Wl,--warn-common
+LDFLAGS+=-shared -pthread -Wl,--warn-common +LDFLAGS+=-pthread -Wl,--warn-common
LIBS= LIBS=
MKDIR_P=/bin/mkdir -p
SHELL=/bin/sh SHELL=/bin/sh
ASTMODDIR=$(libdir)/asterisk/modules ASTMODDIR=$(libdir)/asterisk/modules