Commit graph

763 commits

Author SHA1 Message Date
Sebastian Kemper
0835ad378b asterisk-chan-dongle: fix uclibc build
uclibc doesn't include iconv, so we need to use libiconv-full. This
fixes the ARC builds as they still default to uclibc.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2017-09-02 00:28:19 +02:00
Sebastian Kemper
fa7b0c6cae asterisk-chan-dongle: change project URL
Change the upstream URL to the one where we get the source from to avoid
confusion.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2017-09-02 00:24:53 +02:00
Sebastian Kemper
eb3c046f03 asterisk13: add func_iconv
Add new module. Iconv is available in the toolchain, so it doesn't cost
anything. Don't add it when uclibc is used, because there an external
libiconv would be needed.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2017-09-02 00:22:44 +02:00
Sebastian Kemper
9e13de48f0 asterisk13: add missing commas to module definitions
Only a cosmetic change.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2017-09-02 00:21:47 +02:00
Sebastian Kemper
8554506b3b asterisk11 + asterisk13: use system libedit
libedit now includes a pkgconfig file, meaning asterisk can detect it.
So use the system libedit instead having asterisk include an internal
copy.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2017-09-02 00:17:44 +02:00
Daniel Golle
b6a8bbd5fb dahdi-tools: fix previous commit
The dependencies in the default section were modified instead of just
the ones for dahdi-cfg. Fix that.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2017-09-01 16:21:22 +02:00
Daniel Golle
5fc6447bd4 dahdi-tools: package dahdi_cfg executable
Grab the binary instead of the libtool-shell-wrapper...

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2017-09-01 01:12:27 +02:00
Jiri Slachta
25394f6324 Merge pull request #183 from micmac1/master
asterisk-chan-dongle: overhaul
2017-08-28 21:31:30 +02:00
Sebastian Kemper
fbda98058b asterisk-chan-dongle: overhaul
- Make the Makefile use BUILD_VARIANT so the package can be built for
  different Asterisk versions. This is also the reason why the folder is
  renamed from asterisk-11.x-chan-dongle to asterisk-chan-dongle.
- Change source URI from upstream to the fork of wdoekes. Upstream
  doesn't update the repo anymore, wdoekes does.
- Remove dep on libiconv-full, make the package use toolchain's iconv
  (compile-tested with musl).
- Drop patches that are already upstream.
- Update flags.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2017-08-28 19:57:41 +02:00
Daniel Golle
dc7edf43cd asterisk-13.x: package RAND dialplan function
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2017-08-27 03:36:29 +02:00
Jiri Slachta
26416d0332 Merge pull request #182 from micmac1/master
New PR: pjproject and asterisk13
2017-08-26 18:37:00 +02:00
Sebastian Kemper
043ecc9294 asterisk13: add missing modules
- Add missing modules to curl and odbc packages. This fixes issue #181.
- Add back pbx-lua, which apparently was dropped earlier.
- Revision bump.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2017-08-19 16:51:45 +02:00
Sebastian Kemper
92e04ad4cc asterisk13: clean up compile stage
- Don't add extra TARGET_LDFLAGS for asterisk13-pbx-lua. It is not
  needed anymore (apart from that the module isn't available currently,
  see next commit).
- Stop setting -Wl,-rpath-link in LDFLAGS. There seems to be no point to
  do that (anymore).
- Stop calling specific make targets like version.h; make handles the
  build properly without it.
- Use the default compile routine instead of the custom one.
- Add AST_FORTIFY_SOURCE to MAKE_FLAGS (seen in Debian rules file,
  prevents asterisk's build system to mess with OpenWrt/LEDE flags).

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2017-08-19 16:45:04 +02:00
Sebastian Kemper
6369299d9b asterisk13: clean up configure stage
- Remove some unneeded parentheses.
- Remove $(SITE_VARS) as it is not used.
- Remove --without-curl and --with-uuid=... from configure arguments as
  they've been removed from configure.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2017-08-19 16:27:03 +02:00
Sebastian Kemper
4cfd2a6f11 asterisk13: change some default file locations
- Set data dir to /usr/share/asterisk and use default locations for
  everything else.
- This is more in line with FHS and fixes issue #38. Database files are
  now written to tmpfs (/var is mounted there). This prevents the
  rootfs from filling up. It also prevents the flash to degrade during
  constant database rewriting.
- As the data dir changes, so does the location of the sound files. This
  commit also takes care of that.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2017-08-19 16:23:22 +02:00
Sebastian Kemper
630d92a0cf pjpoject: cleanups and fix for COPTS warnings
- Remove some unnecessary trailing slashes plus fix a whitespace.
- Remove flags that do not seem to have a good reason to be there
  (anymore).
- Add sed script to remove $(TARGET_CFLAGS) from pkgconfig file. This
  gets rid of the warnings in asterisk13 about COPTS duplication.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2017-08-19 15:48:04 +02:00
Jiri Slachta
c6493b543a Merge pull request #180 from micmac1/master
chan-sccp-b: switch to git version, update patch
2017-08-15 17:28:05 +02:00
Sebastian Kemper
d1ab4dac16 chan-sccp-b: switch to git version, update patch
- As suggested by upstream in issue #167, move from svn to git source.
  The resulting module is less than half the size in comparison.

- Rework (and rename) previous "drop-Og-optimization" patch. The
  previous patch worked fine with -Os in CFLAGS (default). But if numeric
  values are used instead (e.g. -O2) this optimization would be completely
  removed. The new patch prevents that.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2017-08-14 21:59:39 +02:00
Jiri Slachta
921a560832 Merge pull request #123 from robho/yate_banbrutes_using_iptables_recent
yate-scripts-perl: Add script to block phones which fail to authenticate
2017-08-13 21:26:56 +02:00
Jiri Slachta
2f190f1b2a kamailio-4.x: update to 4.4.6
Signed-off-by: Jiri Slachta <jiri@slachta.eu>
2017-08-13 20:44:16 +02:00
Jiri Slachta
cf7b805fbe kamailio-5.x: introduce new package
Signed-off-by: Jiri Slachta <jiri@slachta.eu>
2017-08-13 20:29:23 +02:00
Daniel Golle
73c3323960 Merge pull request #179 from micmac1/master
asterisk-13.x: fix config file issues and clean up modules
2017-08-13 15:48:18 +02:00
Sebastian Kemper
f29574c551 asterisk-13.x: remove modules from pjsip (cosmetic)
Remove two modules from pjsip. Upstream removed res_pjsip_log_forwarder
and moved res_pjsip_multihomed to res_pjsip.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2017-08-13 15:12:28 +02:00
Sebastian Kemper
b9914e6f3f asterisk-13.x: fix config file issues
- The configuration file protection for modules does not work when there
  is more than one configuration file. Currently conffiles is populated
  with a space separated list. But the items need to be separated by
  newlines. With spaces, only the first item gets added to conffiles. The
  remaining items are dropped and not protected. Fix this by replacing
  spaces with newlines. Revision bump because this could lead to
  overwriting files unintentionally.
- Remove a duplicate '/etc/asterisk/modules.conf' from
  Package/asterisk13/conffiles.
- Remove '/etc/asterisk/rtp.conf' from Package/asterisk13/conffiles
  because the file is installed and protected by res-rtp-asterisk.
- Add missing stasis.conf and pjsip_wizard.conf.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2017-08-13 15:00:42 +02:00
Jiri Slachta
20b8cbc58d Merge pull request #178 from micmac1/master
sipp: version bump, build fixes
2017-08-10 21:17:28 +02:00
Sebastian Kemper
85d15f25f9 sipp: version bump, build fixes
- bumped to 3.5.1
- removed musl patch because it was upstreamed
- add patch to fix ncurses detection
- fixes issue #125

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2017-08-10 20:47:38 +02:00
Jiri Slachta
a5f9875fa7 Merge pull request #177 from micmac1/master
New PR: asterisk + pjproject
2017-08-10 09:32:30 +02:00
Sebastian Kemper
08fd9340ff asterisk-13.x: fix missing symbols issue
- add some pjsip modules that were missing.
- sort pjsip modules alphabetically.
- add a patch from ASTERISK-26518 to fix the unresolved symbol issue.
  The patch is also included in Debian. The patch fixes issue #77 (the
  problem was also mentioned in #88).

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2017-08-09 23:08:28 +02:00
Sebastian Kemper
45e0c6a721 pjproject: add config_site.h
Copied from Asterisk, sets some sane values. For instance it enables
IPv6 support.

Also it disables DEBUG. With debug enabled 'pjproject enables "assert"
functions which can cause Asterisk to crash unexpectedly' (quote from
Asterisk wiki). This probably fixes issue #140.

With this config_site.h in place the libsrtp dep can be dropped from
select sub packages.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2017-08-09 22:52:24 +02:00
Sebastian Kemper
29cb5debb3 pjproject: enable ssl support
Enable SSL support as Asterisk relies on it. Some Asterisk modules
cannot load without it.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2017-08-09 22:48:10 +02:00
Sebastian Kemper
ae177a2f5f pjproject: align with Asterisk requirements, misc improvements
- Make "--disable-floating-point" depend on SOFT_FLOAT
- Remove "--disable-ilbc-coder" as configure no longer recognizes it.
- Align args with the ones used by Asterisk (for their bundled pjproject);
  this includes adding "--disable-resample".
- With libresample removed remove the dep from asterisk13 accordingly.
- Note: the disabled items are _not_ used by Asterisk anyway.
- Drop speex dep as pjproject does not link against it the way it is
  configured.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2017-08-09 22:45:34 +02:00
Sebastian Kemper
d8469c8750 pjproject: sort configure args, remove duplicates
This commit is only meant to make the following commits easier to follow.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2017-08-09 22:17:17 +02:00
Sebastian Kemper
a4513b7bd9 asterisk-g72x: fix variant build
Set PKG_BUILD_DIR for each variant. Without it only one variant gets
built and put into both packages. This fixes issue #150.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2017-08-09 22:11:27 +02:00
Sebastian Kemper
473e3d1246 chan-sccp-b: fix variant build, misc fixes
- Set PKG_BUILD_DIR for each variant. Without it only one variant gets
  built and put into both packages.
- Add libiconv to build deps. Some iconv m4 files are required. Possibly
  fixes issue #121.
- Replace recently added configure args with the ones suggested by upstream
  @dkgroot in issue #167. This again shaves some bytes off the package.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2017-08-09 22:09:29 +02:00
Jiri Slachta
cc38c50aa4 asterisk-11.x: add missing description to several modules
Signed-off-by: Jiri Slachta <jiri@slachta.eu>
2017-08-08 21:00:31 +02:00
Jiri Slachta
bd466be0d8 asterisk-13.x: add pjproject.conf to res_pjproject module
Add missing config file for res_pjproject module.

Signed-off-by: Jiri Slachta <jiri@slachta.eu>
2017-08-08 10:55:06 +02:00
Jiri Slachta
af0bf6040f Merge pull request #175 from micmac1/master
New PR: freeswitch-stable
2017-08-05 20:33:50 +02:00
Sebastian Kemper
7b265d7f00 freeswitch-stable: fix escaping
Fix escaping of dollar sign, otherwise a postinst-pkg script will not be
correct.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2017-08-05 14:49:13 +02:00
Sebastian Kemper
4326f5cf1a freeswitch-stable-sounds: remove package
This package is just wasting space on the mirrors. Only very few people
will actually want the sound files on their device. And those few who do
will have no problem downloading the files manually.

Get rid of it.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2017-08-05 14:24:19 +02:00
Jiri Slachta
9a9c9c43bd asterisk-11.x: bump PKG_RELEASE
Bump PKG_RELEASE due to changes in commit ec6991c01c

Signed-off-by: Jiri Slachta <jiri@slachta.eu>
2017-08-04 08:07:12 +02:00
Jiri Slachta
65d2797e91 asterisk-13.x: bump PKG_RELEASE
Bump PKG_RELEASE due to changes in commit ec6991c01c

Signed-off-by: Jiri Slachta <jiri@slachta.eu>
2017-08-04 08:06:34 +02:00
Jiri Slachta
7937bd315a Merge pull request #174 from micmac1/master
New PR: asterisk segfault and freeswitch
2017-08-04 07:59:20 +02:00
Sebastian Kemper
23e60f5cdf freeswitch-stable: cleanups
- Replace $FS_STABLE_PREFIX_DIR with $FS_STABLE_DATA_DIR. The variable
  is set to /usr/share/freeswitch, so it's not the prefix. Data dir is
  the correct description.

- Remove lots of lines from CONFIGURE_ARGS. All of them duplicates,
  because they're already set by the build system, so we can remove the
  clutter.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2017-08-03 21:31:17 +02:00
Sebastian Kemper
ecaccf6657 freeswitch-stable-sounds: add "Allison" sound packs
These were recently added by upstream.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2017-08-03 21:26:26 +02:00
Sebastian Kemper
ec6991c01c asterisk-11.x and asterisk-13.x: Disable LOW_MEMORY by default
In issue #173 a segmentation fault occuring during a simple SIP call was
reported. Compiling with LOW_MEMORY disabled the reproducible segfault
disappeared.

This commits adds a switch for LOW_MEMORY. Default is off. If anybody
wants to debug the segfault s/he can enable it.

The segfault was reported for Asterisk 11. Disable LOW_MEMORY on
Asterisk 13 anyway, better safe than sorry.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2017-08-03 21:16:03 +02:00
Jiri Slachta
6341be04f4 asterisk-13.x: fix module dependencies and add new modules
- add XMPP and motif modules
- remove missing pjproject dependencies and fix them

Signed-off-by: Jiri Slachta <jiri@slachta.eu>
2017-07-29 22:26:38 +02:00
Jiri Slachta
b9e1101518 pjproject: fix Makefile variables
Signed-off-by: Jiri Slachta <jiri@slachta.eu>
2017-07-29 22:24:58 +02:00
Jiri Slachta
42e5f41074 Merge pull request #172 from micmac1/master
New PR: asterisk
2017-07-29 18:14:22 +02:00
Sebastian Kemper
7fc4844b71 libs/pjproject: security revision bump
Add patches provided by Asterisk project for pjproject. This fixes the
following vulnerabilities:

- AST-2017-002: Buffer Overrun in PJSIP transaction layer (CVE-2017-9372)
- AST-2017-003: Crash in PJSIP multi-part body parser

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2017-07-29 14:04:00 +02:00
Sebastian Kemper
e1ce116eea net/chan-sccp-b: version bump and fixes
- Bump to revision 6728.
- Remove '-fi' from PKG_FIXUP. Trust in the build system to do the right
  thing.
- Set PKG_INSTALL:=1 so "make install" doesn't need to be called
  manually anymore. This also drops LOW_MEMORY from CFLAGS, which is not
  needed as chan-sccp-b looks into asterisk's headers to find out if
  LOW_MEMORY is enabled or not.
  The build output actually looks much more pleasant afterward.
- Disable chan-sccp-b's optimization which it enables by default. It
  sets -O3 and all that jazz. To make it simply use the OpenWrt/LEDE
  flags optimization needs to be disabled.
- With optimization disabled chan-sccp-b still adds -Og to the end of
  the CFLAGS. Add a small patch to prevent that.
- Disable debug which is enabled by default. This brings down the size
  of the installed binary from 14 MByte (!) to a little over 2 MByte
  (checked on ARM).

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2017-07-28 22:01:51 +02:00