micmac1 [Sun, 22 Jul 2018 09:38:18 +0000 (11:38 +0200)]
Merge pull request #353 from micmac1/fs-18.06
freeswitch-stable: backport fixes from master to 18.06
Sebastian Kemper [Sun, 22 Jul 2018 07:32:44 +0000 (09:32 +0200)]
freeswitch-stable: backport pcre fix
Backport from master.
This patch is strictly speaking only needed for pcre 8.42 and up.
Add it anyway in case pcre maintainer decides to bump the version.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Sun, 22 Jul 2018 07:29:20 +0000 (09:29 +0200)]
freeswitch-stable: backport apr fix
Backport from master.
The macro APR_TRY_COMPILE_NO_WARNING included in apr/apr-util is
incorrect. It results in extra brackets being put into conftest.c, for
example:
#include "confdefs.h"
[
#include <stddef.h>
#include <iconv.h>
]
int main(int argc, const char *const *argv) {
[
iconv(0,(char **)0,(size_t *)0,(char **)0,(size_t *)0);
]
return 0; }
The test always fails with:
error: expected identifier or '(' before '[' token
The following checks are affected:
- variable length arrays
- type of inbuf parameter to iconv
Fix from upstream (Apache).
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Sun, 22 Jul 2018 07:11:40 +0000 (09:11 +0200)]
freeswitch-stable: backport iconv fixes
Backport iconv fixes from master.
- Include nls.mk and remove the uclibc iconv hack.
- The above change pointed to an issue with the unimrcp sed script. It
is missing brackets, which causes follow-up breakage when APR_SETVAR
is called, because the latter uses commas to separate its arguments -
commas that TARGET_LDFLAGS contains when nls.mk is included. So add
the missing brackets.
- mod_gsmopen is unable to detect whether iconv's inbuf is const. Update
the patch so the Makefile can pass this information on to mod_gsmopen.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Jiri Slachta [Thu, 28 Jun 2018 08:43:16 +0000 (10:43 +0200)]
Merge pull request #344 from micmac1/openwrt-18.06
(for OpenWrt 18.06): asterik: fix AST-2018-007 and AST-2018-008
Sebastian Kemper [Tue, 26 Jun 2018 17:39:59 +0000 (19:39 +0200)]
asterisk-15.x: patch AST-2018-007 and 008
Patches from upstream for:
AST-2018-007
AST-2018-008
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Tue, 26 Jun 2018 17:38:37 +0000 (19:38 +0200)]
asterisk-13.x: patch AST-2018-008
Patch from upstream for AST-2018-008.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Jiri Slachta [Tue, 5 Jun 2018 07:52:05 +0000 (09:52 +0200)]
Merge pull request #334 from guidosarducci/backport-openwrt-18.06
siproxd: backport procd switch and cleanup to openwrt-18.06
guidosarducci [Sun, 25 Mar 2018 01:51:47 +0000 (18:51 -0700)]
siproxd: restructure code and use procd for init
Switch to use procd for init, with support for jails. Clean up code and
restructure callback processing to be more robust and understandable. This
also fixes a bug processing multiple siproxd config sections, as reported
by Michael Kuron.
Signed-off-by: Tony Ambardar <itugrok@yahoo.com>
(cherry picked from master commit
b65b20f6)
guidosarducci [Sun, 25 Mar 2018 00:50:06 +0000 (17:50 -0700)]
siproxd: don't apply default values already built-in
Signed-off-by: Tony Ambardar <itugrok@yahoo.com>
(cherry picked from master commit
a3f6f176)
Jiri Slachta [Thu, 24 May 2018 04:51:20 +0000 (06:51 +0200)]
Merge pull request #331 from micmac1/openwrt-18.06
asterisk in 18.06: remove sounds cache
Sebastian Kemper [Mon, 21 May 2018 21:30:27 +0000 (23:30 +0200)]
asterisk-15.x: remove sounds cache
When there is no sounds cache declared the build system will not attempt to
download any sound packs or their SHA1 checksums.
This is to be preferred because:
a) the build may occur offline, causing it to fail
b) plain http is used by the build system for downloading
There is no drawback here because the standard sound packs are included in
the Asterisk source tarball already.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Mon, 21 May 2018 21:29:37 +0000 (23:29 +0200)]
asterisk-13.x: remove sounds cache
When there is no sounds cache declared the build system will not attempt to
download any sound packs or their SHA1 checksums.
This is to be preferred because:
a) the build may occur offline, causing it to fail
b) plain http is used by the build system for downloading
There is no drawback here because the standard sound packs are included in
the Asterisk source tarball already.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Jiri Slachta [Wed, 9 May 2018 11:55:20 +0000 (13:55 +0200)]
Merge pull request #326 from micmac1/yate-fix-mysql-detection
yate: fix mysql detection
Sebastian Kemper [Sat, 5 May 2018 11:15:54 +0000 (13:15 +0200)]
yate: fix mysql detection
When configure is called with '--with-mysql="$(STAGING_DIR)/usr"' it tries
to detect mysql manually instead of using mysql_config. This doesn't always
work:
<snip>
checking for MySQL in /var/lib/buildbot/slaves/slave-lede-builds4/i386_pentium4/build/sdk/staging_dir/target-i386_pentium4_musl/usr... no
<snip>
This commit changes the configure argument to '--with-mysql=yes/no'. When
'yes' is selected configure uses mysql_config and then the detection works
reliably.
<snip>
checking for MySQL using mysql_config... yes 10.1.32
checking whether MYSQL_OPT_RECONNECT is declared... yes
checking whether MYSQL_OPT_READ_TIMEOUT is declared... yes
checking whether MYSQL_OPT_WRITE_TIMEOUT is declared... yes
checking whether mysql_set_character_set is declared... yes
<snip>
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Jiri Slachta [Tue, 1 May 2018 19:19:05 +0000 (21:19 +0200)]
Merge pull request #321 from micmac1/chan-lantiq-fix-target-build
asterisk-chan-lantiq: fix dep for nonshared builds
Jiri Slachta [Tue, 1 May 2018 19:16:57 +0000 (21:16 +0200)]
Merge pull request #322 from micmac1/baresip-up
Baresip suite: version bumps
Jiri Slachta [Tue, 1 May 2018 19:16:34 +0000 (21:16 +0200)]
Merge pull request #323 from micmac1/ast-up
Asterisk: version bumps
Jiri Slachta [Tue, 1 May 2018 19:15:09 +0000 (21:15 +0200)]
Merge pull request #324 from micmac1/ast-modules-up
asterisk-channel modules: bump sccp and dongle
Jiri Slachta [Tue, 1 May 2018 19:14:45 +0000 (21:14 +0200)]
Merge pull request #325 from micmac1/kamailio-up
kamailio-5.x: bump to 5.1.3
Sebastian Kemper [Sat, 28 Apr 2018 13:09:35 +0000 (15:09 +0200)]
kamailio-5.x: bump to 5.1.3
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Sat, 28 Apr 2018 13:05:30 +0000 (15:05 +0200)]
asterisk-chan-sccp: bump snapshot
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Sat, 28 Apr 2018 13:03:53 +0000 (15:03 +0200)]
asterisk-chan-dongle: bump snapshot
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Sat, 28 Apr 2018 12:55:37 +0000 (14:55 +0200)]
asterisk-15.x: bump to 15.3.0
- patches refreshed
- menuselect is bootstrapped from main bootstrap script now, extra call
removed
- drop a module that was removed upstream for being incomplete
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Sat, 28 Apr 2018 12:07:08 +0000 (14:07 +0200)]
asterisk-13.x: bump to 13.20.0
- patches refreshed
- menuselect is bootstrapped from main bootstrap script now, extra call
removed
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Sat, 28 Apr 2018 12:03:16 +0000 (14:03 +0200)]
baresip: bump to 0.5.9
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Sat, 28 Apr 2018 12:01:02 +0000 (14:01 +0200)]
rem: bump to 0.5.3
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Sat, 28 Apr 2018 11:58:52 +0000 (13:58 +0200)]
re: bump to 0.5.8
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Fri, 27 Apr 2018 19:32:52 +0000 (21:32 +0200)]
asterisk-chan-lantiq: fix dep for nonshared builds
Despite all previous efforts chan-lantiq is not built by the build bots.
Checking the logs of a target build reveals that the chan-lantiq builds are
not even attempted.
During the target builds CONFIG_ALL is not set, meaning no regular package
gets selected. CONFIG_ALL_NONSHARED on the other hand is set. But
chan-lantiq still will not be selected, because it depends on "asterisk",
meaning asterisk needs to be selected first for chan-lantiq to become
available.
This commit changes the asterisk depend to "+asterisk", meaning asterisk
will be selected if chan-lantiq is selected.
This was tested with the SDK. A seed config file was added with the
following:
CONFIG_ALL_NONSHARED=y
Running menuselect showed that now chan-lantiq is selected
automatically. This should fix the problem.
The problem with "+asterisk" is that this breaks the asterisk menus for all
asterisk plugins/utilities that follow chan-lantiq alphabetically. To
address this put the chan-lantiq modules into their own sub menu "Telephony
Lantiq". This is not nice, but the alternative would be to rename the
packages to something like asterisk13-z-chan-lantiq. This would make it
harder to find the packages. Maybe somebody has a better idea in the
future.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Jiri Slachta [Tue, 24 Apr 2018 06:58:39 +0000 (08:58 +0200)]
Merge pull request #320 from micmac1/chan-lantiq-no-variants
asterisk-chan-lantiq: avoid VARIANTs
Sebastian Kemper [Sun, 15 Apr 2018 15:29:40 +0000 (17:29 +0200)]
asterisk-chan-lantiq: avoid VARIANTs
chan-lantiq currently is still not built by the build bots. Split the
package in two, one for Asterisk 13, the other for 15, to avoid a VARIANT
build. Maybe the build bots do not support nonshared VARIANT builds.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Jiri Slachta [Sat, 14 Apr 2018 05:49:29 +0000 (07:49 +0200)]
Merge pull request #315 from micmac1/siproxd-fix-package-names
siproxd: remove underscores from package names
Jiri Slachta [Sat, 14 Apr 2018 05:49:19 +0000 (07:49 +0200)]
Merge pull request #312 from micmac1/baresip2-fix-package-names
baresip: remove underscores from package names
Jiri Slachta [Sat, 14 Apr 2018 05:49:07 +0000 (07:49 +0200)]
Merge pull request #313 from micmac1/rtpproxy-fix-package-names
rtpproxy: remove underscores from package names
Jiri Slachta [Sat, 14 Apr 2018 05:48:53 +0000 (07:48 +0200)]
Merge pull request #316 from micmac1/kamailio-fix-package-names
kamailio-5.x: remove underscores from package names
Jiri Slachta [Sat, 14 Apr 2018 05:48:41 +0000 (07:48 +0200)]
Merge pull request #317 from micmac1/yate-fix-package-names
yate: remove underscores from package names
Jiri Slachta [Sat, 14 Apr 2018 05:48:06 +0000 (07:48 +0200)]
Merge pull request #311 from micmac1/asterisk-fix-package-names
Asterisk: fix package names
micmac1 [Fri, 13 Apr 2018 21:20:34 +0000 (23:20 +0200)]
Merge pull request #318 from micmac1/fs-pp-tone-down-flags
freeswitch-stable: tone down perl/python flags
Sebastian Kemper [Fri, 13 Apr 2018 21:09:15 +0000 (23:09 +0200)]
freeswitch-stable: tone down perl/python flags
Tidy up the flags passed on to FS build system for Perl and Python
modules. Some flags seem a bit too random to include - this commit
removes them.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Tue, 10 Apr 2018 19:34:39 +0000 (21:34 +0200)]
yate: remove underscores from package names
Underscores should not be used in package base names as they're used as
semantic separators by opkg.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Tue, 10 Apr 2018 19:18:14 +0000 (21:18 +0200)]
kamailio-5.x: remove underscores from package names
Underscores should not be used in package base names as they're used as
semantic separators by opkg.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Tue, 10 Apr 2018 19:14:09 +0000 (21:14 +0200)]
siproxd: remove underscores from package names
Underscores should not be used in package base names as they're used as
semantic separators by opkg.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
micmac1 [Tue, 10 Apr 2018 18:50:49 +0000 (20:50 +0200)]
Merge pull request #314 from micmac1/fs-fix-package-names
freeswitch-stable: remove underscores from package names
Sebastian Kemper [Tue, 10 Apr 2018 18:47:13 +0000 (20:47 +0200)]
freeswitch-stable: remove underscores from package names
Underscores should not be used in package base names as they're used as
semantic separators by opkg.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Mon, 9 Apr 2018 21:32:44 +0000 (23:32 +0200)]
rtpproxy: remove underscores from package names
Underscores should not be used in package base names as they're used as
semantic separators by opkg.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Mon, 9 Apr 2018 21:30:49 +0000 (23:30 +0200)]
baresip: remove underscores from package names
Underscores should not be used in package base names as they're used as
semantic separators by opkg.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Mon, 9 Apr 2018 20:57:15 +0000 (22:57 +0200)]
asterisk-15.x: remove underscores from package names
Underscores should not be used in package base names as they're used as
semantic separators by opkg.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Mon, 9 Apr 2018 20:54:06 +0000 (22:54 +0200)]
asterisk-13.x: remove underscores from package names
Underscores should not be used in package base names as they're used as
semantic separators by opkg.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Jiri Slachta [Mon, 9 Apr 2018 06:38:13 +0000 (08:38 +0200)]
Merge pull request #310 from micmac1/libpq-for-arc
Postgresql available now for ARC
Sebastian Kemper [Sun, 8 Apr 2018 09:52:53 +0000 (11:52 +0200)]
yate: build pgsqldb for target ARC
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Sun, 8 Apr 2018 09:51:49 +0000 (11:51 +0200)]
kamailio-5.x: build db_postgres for target ARC
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Sun, 8 Apr 2018 09:50:45 +0000 (11:50 +0200)]
asterisk-15.x: build pgsql for target ARC
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Sun, 8 Apr 2018 09:49:51 +0000 (11:49 +0200)]
asterisk-13.x: build pgsql for target ARC
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Jiri Slachta [Fri, 30 Mar 2018 18:54:31 +0000 (20:54 +0200)]
Merge pull request #309 from azuwis/master
yate: More video codecs mapping
Zhong Jianxin [Fri, 30 Mar 2018 16:14:25 +0000 (00:14 +0800)]
yate: Bump PKG_RELEASE
Signed-off-by: Zhong Jianxin <azuwis@gmail.com>
Zhong Jianxin [Fri, 30 Mar 2018 08:54:24 +0000 (16:54 +0800)]
yate: More video codecs mapping
Signed-off-by: Zhong Jianxin <azuwis@gmail.com>
Jiri Slachta [Sat, 24 Mar 2018 14:13:40 +0000 (15:13 +0100)]
Merge pull request #308 from micmac1/baresip-avformat-dep
baresip: fix mod-avformat DEPENDS
Sebastian Kemper [Sat, 24 Mar 2018 08:41:40 +0000 (09:41 +0100)]
baresip: fix mod-avformat DEPENDS
mod-avformat is only built when mod-avcodec is selected. baresip sets it
up like that in mk/modules.mk:
ifneq ($(USE_AVCODEC),)
MODULES += avcodec
ifneq ($(USE_AVFORMAT),)
MODULES += avformat
endif
endif
This commit updates the mod-avformat DEPENDS accordingly.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Jiri Slachta [Sun, 18 Mar 2018 15:38:56 +0000 (16:38 +0100)]
Merge pull request #305 from micmac1/baresip-pulse-dep
baresip: update baresip-mod-pulse depend
Sebastian Kemper [Sun, 18 Mar 2018 09:19:27 +0000 (10:19 +0100)]
baresip: update baresip-mod-pulse depend
There are two pulseaudio packages, pulseaudio-daemon and
pulseaudio-daemon-avahi. Both provide pulseaudio. Depend on pulseaudio
so the user may choose which one to install.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Jiri Slachta [Sun, 18 Mar 2018 08:58:49 +0000 (09:58 +0100)]
Merge pull request #304 from guidosarducci/master-siproxd-update
siproxd init code and usability improvements
guidosarducci [Wed, 18 Oct 2017 06:39:01 +0000 (23:39 -0700)]
siproxd: improve syslog messages
Use explicit ident string ("siproxd") instead of NULL, as the latter is
not guaranteed to prepend the program name (e.g. unspecified in POSIX),
and may result in syslog messages identified only by PID.
Use consistent facility (LOG_DAEMON) across openlog() and syslog() calls.
Signed-off-by: Tony Ambardar <itugrok@yahoo.com>
guidosarducci [Fri, 9 Mar 2018 07:17:30 +0000 (23:17 -0800)]
siproxd: add usage comments, examples to default UCI config
Explain default configuration options and potential firewall settings.
Provide examples of using documented siproxd configuration directives.
Signed-off-by: Tony Ambardar <itugrok@yahoo.com>
guidosarducci [Sat, 3 Mar 2018 22:15:41 +0000 (14:15 -0800)]
siproxd: use UCI callback processing, reduce code size
Switch to using callback functions for UCI config processing, and remove
the unnecessary scan_interfaces() call together with related code.
Instead of explicitly handling every possible siproxd config option, use
callbacks to deal with those defined in the UCI config file, and directly
handle only selected options with desired default values. This shrinks
the init code by ~3.5 KB and simplifies updating to future siproxd
versions with new options.
(Note: this change exposed some long-standing, broken aspects of UCI
callback handling, fixed in https://github.com/openwrt/openwrt/pull/805.)
Signed-off-by: Tony Ambardar <itugrok@yahoo.com>
Jiri Slachta [Fri, 16 Mar 2018 06:36:54 +0000 (07:36 +0100)]
Merge pull request #303 from ryzhovau/iksemel-src
iksemel: use Google Storage API to get sources from former Googlecode
Alexander Ryzhov [Fri, 16 Mar 2018 06:28:50 +0000 (09:28 +0300)]
iksemel: use Google Storage API to get sources from former Googlecode
Signed-off-by: Alexander Ryzhov <openwrt@ryzhov-al.ru>
Jiri Slachta [Tue, 13 Mar 2018 15:05:44 +0000 (16:05 +0100)]
Merge pull request #302 from micmac1/sipp-standard-c++-lib
sipp: use preferred standard C++ lib
Jiri Slachta [Tue, 13 Mar 2018 15:05:20 +0000 (16:05 +0100)]
Merge pull request #301 from micmac1/asterisk-standard-c++-lib
Asterisk standard c++ lib
Sebastian Kemper [Tue, 13 Mar 2018 12:08:50 +0000 (13:08 +0100)]
sipp: use preferred standard C++ lib
Currently libstdc++ is hardcoded. Change that and use whatever standard
C++ lib has preference.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Tue, 13 Mar 2018 12:03:45 +0000 (13:03 +0100)]
asterisk-15.x: use preferred standard C++ lib
Currently libstdc++ is hardcoded. Change that and use whatever standard
C++ lib has preference.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Tue, 13 Mar 2018 12:02:10 +0000 (13:02 +0100)]
asterisk-15.x: clean up DEPENDS
- The main package does not actually depend on libpopt. Only the utility
smsq does. This commit reflects that in the dependencies.
- libxslt is only used if generating the XML documentation, which this
package does not use. So remove the bogus dependency.
- app-sms does not depend on libpopt either. It has another dependency
on libstdcpp, which is already covered by the main package. This removes
both dependencies.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Tue, 13 Mar 2018 11:59:29 +0000 (12:59 +0100)]
asterisk-13.x: use preferred standard C++ lib
Currently libstdc++ is hardcoded. Change that and use whatever standard
C++ lib has preference.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Tue, 13 Mar 2018 11:51:34 +0000 (12:51 +0100)]
asterisk-13.x: clean up DEPENDS
- The main package does not actually depend on libpopt. Only the utility
smsq does. This commit reflects that in the dependencies.
- libxslt is only used if generating the XML documentation, which this
package does not use. So remove the bogus dependency.
- app-sms does not depend on libpopt either. It has another dependency
on libstdcpp, which is already covered by the main package. This removes
both dependencies.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Tue, 13 Mar 2018 11:03:47 +0000 (12:03 +0100)]
pjproject: use preferred standard C++ lib
Currently libstdc++ is hardcoded. Change that and use whatever standard
C++ lib has preference.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Jiri Slachta [Tue, 13 Mar 2018 07:42:32 +0000 (08:42 +0100)]
Merge pull request #295 from micmac1/dongle-up
asterisk-chan-dongle: simplify and update snapshot
Jiri Slachta [Tue, 13 Mar 2018 07:42:18 +0000 (08:42 +0100)]
Merge pull request #297 from micmac1/sccp-up
asterisk-chan-sccp: bump and cleanup
Jiri Slachta [Tue, 13 Mar 2018 07:41:47 +0000 (08:41 +0100)]
Merge pull request #294 from micmac1/pkg_conf_dep_ast15
asterisk-15.x: remove hack, fix deps and add PKG_CONFIG_DEPENDS
Jiri Slachta [Tue, 13 Mar 2018 07:41:34 +0000 (08:41 +0100)]
Merge pull request #293 from micmac1/pkg_conf_dep_ast13
asterisk-13.x: remove hack, fix deps and add PKG_CONFIG_DEPENDS
Jiri Slachta [Tue, 13 Mar 2018 07:41:07 +0000 (08:41 +0100)]
Merge pull request #292 from micmac1/pkg_conf_dep_pjsip
pjproject: add PKG_CONFIG_DEPENDS
Jiri Slachta [Tue, 13 Mar 2018 07:40:38 +0000 (08:40 +0100)]
Merge pull request #283 from micmac1/siproxd-updates
Siproxd updates
Jiri Slachta [Tue, 13 Mar 2018 07:25:40 +0000 (08:25 +0100)]
Merge pull request #291 from micmac1/compile-fix-pcapsipdump
pcapsipdump: compile fixes
Jiri Slachta [Tue, 13 Mar 2018 07:25:12 +0000 (08:25 +0100)]
Merge pull request #296 from micmac1/lantiq-up
asterisk-chan-lantiq: update snapshot
Jiri Slachta [Tue, 13 Mar 2018 07:24:54 +0000 (08:24 +0100)]
Merge pull request #298 from micmac1/kam-up
Kamailio 5: version bump + PKG_CONFIG_DEPENDS
Jiri Slachta [Tue, 13 Mar 2018 07:24:45 +0000 (08:24 +0100)]
Merge pull request #299 from micmac1/yate-up
yate: add PKG_CONFIG_DEPENDS
micmac1 [Sun, 11 Mar 2018 22:40:23 +0000 (23:40 +0100)]
Merge pull request #300 from micmac1/follow-user-c++-selection
Follow user standard C++ lib selection
Sebastian Kemper [Sun, 11 Mar 2018 22:29:32 +0000 (23:29 +0100)]
freeswitch-stable: use preferred standard C++ lib
Currently libstdc++ is hardcoded. Change that and use whatever standard
C++ lib has preference.
Note: Two modules, event_zmq and v8, do not compile against libuClibc++.
For them to be available libstdcpp needs to have preference.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Sun, 11 Mar 2018 22:25:33 +0000 (23:25 +0100)]
libctb: use preferred standard C++ lib
Currently libstdc++ is hardcoded. Change that and use whatever standard
C++ lib has preference.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Sun, 11 Mar 2018 22:20:11 +0000 (23:20 +0100)]
gsmlib: use preferred standard C++ lib
Currently libstdc++ is hardcoded. Change that and use whatever standard
C++ lib has preference.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Sun, 11 Mar 2018 09:49:03 +0000 (10:49 +0100)]
asterisk-chan-lantiq: add back nonshared flag
The module is never attempted to build in the regular buildbot package
cycle. Stick back the nonshared flag to get at least some log during
the target build cycle.
This also updates the dependency on kmod-ltq-vmmc to be selective (+).
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Fri, 9 Mar 2018 15:57:30 +0000 (16:57 +0100)]
yate: add PKG_CONFIG_DEPENDS
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Fri, 9 Mar 2018 15:37:35 +0000 (16:37 +0100)]
kamailio-5.x: add PKG_CONFIG_DEPENDS
The module list is necessary, unfortunately. But having working
PKG_CONFIG_DEPENDS is nice and the list rarely needs updating.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Fri, 9 Mar 2018 15:36:16 +0000 (16:36 +0100)]
kamailio-5.x: version bump
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Fri, 9 Mar 2018 14:30:20 +0000 (15:30 +0100)]
asterisk-chan-sccp: remove iostreams workaround
The iostreams patch was dropped from the asterisk 13 package. The
workaround can go away.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Fri, 9 Mar 2018 14:29:26 +0000 (15:29 +0100)]
asterisk-chan-sccp: update snapshot
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Fri, 9 Mar 2018 14:04:24 +0000 (15:04 +0100)]
asterisk-chan-lantiq: update snapshot
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Fri, 9 Mar 2018 13:52:40 +0000 (14:52 +0100)]
asterisk-chan-dongle: update snapshot
./configure now requires us to set DESTDIR.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Fri, 9 Mar 2018 13:49:18 +0000 (14:49 +0100)]
asterisk-chan-dongle: add patch to force OpenWrt CFLAGS
Prevent ./configure from adding '-O6' to CFLAGS.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Fri, 9 Mar 2018 13:47:32 +0000 (14:47 +0100)]
asterisk-chan-dongle: simplify Makefile
Simplify the Makefile by using the default Build/Compile routine.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Fri, 9 Mar 2018 12:01:29 +0000 (13:01 +0100)]
asterisk-15.x: add PKG_CONFIG_DEPENDS
The module and util lists are necessary, unfortunately. But having
working PKG_CONFIG_DEPENDS is nice and the lists rarely need updating.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
Sebastian Kemper [Fri, 9 Mar 2018 11:59:36 +0000 (12:59 +0100)]
asterisk-15.x: remove .lastclean hack
Remove the hack. Instead just call make with .lastclean and afterward
make menuselect again. If .lastclean was not removed by menuselect this
will not do anything, which is nice.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>