Upstream accepted OpenWrt patches, so most can be removed. Other changes: - version handling changed to use PKG_SOURCE_DATE and PKG_SOURCE_VERSION as per OpenWrt package policies [1] - ./files/rtpproxy.config renamed to ./files/rtpproxy.conf also as per OpenWrt package policies [1] - no longer needed Makefile variables dropped (PKG_SOURCE_SUBDIR etc.) - PKG_CHECK_FORMAT_SECURITY:=0 dropped, patch for that upstreamed as well - PKG_BUILD_PARALLEL:=1 added - PKG_LICENSE_FILES updated - dropped bcg729 deactivation hack (fixed by adding bcg729 pkg-config file in other commit) - dependency on libatomic now required - updated rtpproxy-mod-acct-csv TITLE - added --without-xsltproc to CONFIGURE_ARGS to prevent build failure - added new module rtpproxy-mod-acct-rtcp-hep - added utilities extractaudio and makeann - updated patch to prevent debug build of rtpp_acct_rtcp_hep [1] https://openwrt.org/docs/guide-developer/package-policies Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
32 lines
1 KiB
Diff
32 lines
1 KiB
Diff
--- a/src/Makefile.am
|
|
+++ b/src/Makefile.am
|
|
@@ -5,7 +5,7 @@ include $(top_srcdir)/autosrc/Makefile.a
|
|
|
|
UCL_DIR=$(top_srcdir)/external/libucl
|
|
|
|
-bin_PROGRAMS=rtpproxy rtpproxy_debug
|
|
+bin_PROGRAMS=rtpproxy
|
|
noinst_PROGRAMS = rtpp_rzmalloc_perf rtpp_fintest
|
|
|
|
if BUILD_OBJCK
|
|
--- a/modules/acct_csv/Makefile.am
|
|
+++ b/modules/acct_csv/Makefile.am
|
|
@@ -1,6 +1,6 @@
|
|
include $(top_srcdir)/m4/memdeb.ami
|
|
|
|
-pkglib_LTLIBRARIES = rtpp_acct_csv.la rtpp_acct_csv_debug.la
|
|
+pkglib_LTLIBRARIES = rtpp_acct_csv.la
|
|
|
|
rtpp_acct_csv_la_SOURCES = rtpp_acct_csv.c
|
|
rtpp_acct_csv_la_LDFLAGS = -avoid-version -module -shared -export-dynamic
|
|
--- a/modules/acct_rtcp_hep/Makefile.am
|
|
+++ b/modules/acct_rtcp_hep/Makefile.am
|
|
@@ -3,7 +3,7 @@ include $(top_srcdir)/m4/memdeb.ami
|
|
HEPSRCDIR=$(top_srcdir)/hepconnector
|
|
UCLSRCDIR=$(top_srcdir)/external/libucl
|
|
|
|
-pkglib_LTLIBRARIES = rtpp_acct_rtcp_hep.la rtpp_acct_rtcp_hep_debug.la
|
|
+pkglib_LTLIBRARIES = rtpp_acct_rtcp_hep.la
|
|
|
|
noinst_PROGRAMS = rtcp2json_test
|
|
rtcp2json_test_SOURCES = rtcp2json_test.c rtpp_sbuf.c rtcp2json.c
|