Merge pull request #162 in FS/freeswitch from ~MARKUSL/freeswitch:FS-7151 to master* commit '5c5b9fcd2174adcff0d9ca235d41864a062144fe':
If available, use libjpeg-turbo in Debian build dependencies
If available, use libjpeg-turbo in Debian build dependenciesDebian is transitioning to libjepg-turbo in Jessie.
See the libjpeg-turbo transition plan for details:
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=754988
FS-7151 #resolve
Merge pull request #160 in FS/freeswitch from ~FLAVIO/freeswitch:bugfix/FS-7004 to master* commit '378d35058fec4aaa471dced8112a69f0e779b45a':
FS-7004 mod_sndfile: use correct permissions to create new files
FS-7004 mod_sndfile: use correct permissions to create new fileslibsndfile's sf_open() function doesn't allow to pass file permissions. To fix
this, new files are created with the correct mode before passing them to
libsndfile.
FS-7150 #resolve #comment [mod_rayo] added param add-variables-to-events which will add channel variables to <offer>, <ringing>, <answered>, and <end> if set to true. Default is false.
Fix build of freetdm on CentOSRevert the build change to freetdm since it broke the build of that
modules on CentOS. Once a working change is finished, then it'll be
committed against FS-7122.
FS-7142 #resolve
Merge pull request #146 in FS/freeswitch from ~DDRAGIC/freeswitch:bugfix/FS-7121-switch_events_match-matches-any-substring to master* commit '1c16d5d8b041d0fac3463f5f88eaaa1f60aec24b':
FS-7121 change switch_events_match() to use strcmp
Merge pull request #147 in FS/freeswitch from ~DDRAGIC/freeswitch:feature/FS-7128-fs_cli-ignore-duplicate-lines to master* commit '2406abdb76a2c6dfb3da364a3997fb6d422e759d':
FS-7128 fs_cli: ignore duplicate lines in history
Merge pull request #148 in FS/freeswitch from ~DDRAGIC/freeswitch:feature/FS-7129-fs_cli-function-keys-toggle-functionality to master* commit '959b07c06f565f7d2d8a158c3ce2f44bdae3f350':
FS-7129 fs_cli: add toggle mode to function keys
Merge pull request #154 in FS/freeswitch from ~SPDITNER/freeswitch-fs-7136:master to master* commit '85b8631d621f71a5345bc00627f938eb85ffef03':
Add conference member data to floor event
Merge pull request #141 in FS/freeswitch from ~HDIOGENES/freeswitch-fs-7088:master to master* commit 'ece5cd52db59632b861fa3028f6f885fe8e13551':
FS-7088 #resolve Set flag to enable core dump from non-root users.
Merge pull request #157 in FS/freeswitch from bugfix/FS-7122-several-libs-do-not-have-the-subdirs to master* commit '16f7177c3d9ac4c3932d45e125498a1b5495dce6':
resolve an automake warning about subdirs on latest automake
resolve an automake warning about subdirs on latest automakeThe file 'libs/sofia-sip/s2check/exit77.c' was moved in order to
silence the warning and to keep the build working. There might be a
build problem that results from this file move, but after serveral
build tests I have not found one. The contents of the file are
specifically for the make check target, so I believe it would be
highly unlikely to cause problems with any production feature.
FS-71...
Merge pull request #155 in FS/freeswitch from bugfix/FS-7122-several-libs-do-not-have-the-subdirs to master* commit '51f2442a9e3e3478b38bfab882c7cfe4bfc37d92':
resolve an automake warning about subdirs on latest automake
FS-7117 #comment revert bf5210bf72d6c4b0d9b599a5a07ee59a9c947436 and implement it in ws.c please be sure to learn to use git commit hooks to properly associate commits with jiras
resolve an automake warning about subdirs on latest automakeLatest automake will detect then warn if the Makefile uses source
files that are in subdirectories, but the subdirs option is not
set. In the FreeSWITCH build system the current expected behavior is
to expect the subdirs option to be enabled.
FS-7122 #resolve
FS-7127 #comment fix regression from a80c739, thanks MikeThe second hunk in this patch isn't right. In the past,
if tmp was null, it would not pass the if.
Add conference member data to floor eventBetween v1.2 and v1.4, member data was factored out. This makes it so
that one can not determine who the originator of a floor change event
is.
With this change, the meta data related to the conference member whom
initiated the floor change event is added to the event.
See FS-7136
Merge pull request #153 in FS/freeswitch from ~JONHEIER/freeswitch-fs-7137:master to master* commit '165f54216c47a5343ac0c7a6ac62fd6a9de57b5f':
mod_sofia: Set sip_to_tag on ringing indication for inbound channels.
mod_sofia: Set sip_to_tag on ringing indication for inbound channels.When bridging a call, the to-tag used in the outgoing 180 Ringing
message for the inbound channel is unavailable until the channel has
been answered. For the outgoing channel this value is already available
through the sip_to_tag variable via the event socket.
This is solved this by setting sip_to_tag to the local leg's tag when
receiving a ringing indication for inbound channels. This will al...
FS-7088 #resolve Set flag to enable core dump from non-root users.When FreeSWITCH is running as a non-privileged user, we need to enable
PR_SET_DUMPABLE for it to be able to generate core dumps.
Instead of a generic __linux__ check, there's a new configure.ac flag
to check directly for prctl.h, which could also be used in other
places in the code.