(shamelessly purloined from the Debian package) to make the package
compile with ocaml 4.02.
Changes in the new version:
- compile fix for recent lablgtk releases
- do not crash the application with an unreadable style file
(libreoffice still builds.)
02/08/2015 - GLM 0.9.7.0 released
Features:
Added GTC_color_space: convertLinearToSRGB and convertSRGBToLinear functions
Added 'fmod' overload to GTX_common with tests #308
Added left handed perspective and lookAt functions #314
Added functions eulerAngleXYZ and extractEulerAngleXYZ #311
Added GTX_hash to perform std::hash on GLM types #320#367
Added GTX_wrap for texcoord wrapping
Added static components and precision members to all vector and quat types #350
Added .gitignore #349
Added support of defaulted functions to GLM types, to use them in unions #366
Improvements:
Changed usage of __has_include to support Intel compiler #307
Specialized integer implementation of YCoCg-R #310
Don't show status message in 'FindGLM' if 'QUIET' option is set. #317
Added master branch continuous integration service on Linux 64 #332
Clarified manual regarding angle unit in GLM, added FAQ 11 #326
Updated list of compiler versions
Fixes:
Fixed default precision for quat and dual_quat type #312
Fixed (u)int64 MSB/LSB handling on BE archs #306
Fixed multi-line comment warning in g++ #315
Fixed specifier removal by 'std::make_pair' #333
Fixed perspective fovy argument documentation #327
Removed -m64 causing build issues on Linux 32 #331
Fixed isfinite with C++98 compilers #343
Fixed Intel compiler build error on Linux #354
Fixed use of libstdc++ with Clang #351
Fixed quaternion pow #346
Fixed decompose warnings #373
Fixed matrix conversions #371
Deprecation:
Removed integer specification for 'mod' in GTC_integer #308
Removed GTX_multiple, replaced by GTC_round
Download: GLM 0.9.7.0 (ZIP, 4.2 MB) (7Z, 2.8 MB)
15/02/2015 - GLM 0.9.6.3 released
Fixes:
Fixed Android doesn't have C++ 11 STL #284
Download: GLM 0.9.6.3 (ZIP, 4.1 MB) (7Z, 2.7 MB)
15/02/2015 - GLM 0.9.6.2 released
Features:
Added display of GLM version with other GLM_MESSAGES
Added ARM instruction set detection
Improvements:
Removed assert for perspective with zFar < zNear #298
Added Visual Studio natvis support for vec1, quat and dualqual types
Cleaned up C++11 feature detections
Clarify GLM licensing
Fixes:
Fixed faceforward build #289
Fixed conflict with Xlib #define True 1 #293
Fixed decompose function VS2010 templating issues #294
Fixed mat4x3 = mat2x3 * mat4x2 operator #297
Fixed warnings in F2x11_1x10 packing function in GTC_packing #295
Fixed Visual Studio natvis support for vec4 #288
Fixed GTC_packing *pack*norm*x* build and added tests #292
Disabled GTX_scalar_multiplication for GCC, failing to build tests #242
Fixed Visual C++ 2015 constexpr errors: Disabled only partial support
Fixed functions not inlined with Clang #302
Fixed memory corruption (undefined behaviour) #303
Download: GLM 0.9.6.2 (ZIP, 4.1 MB) (7Z, 2.7 MB)
10/12/2014 - GLM 0.9.6.1 released
GLM 0.9.6.0 came with its set of major glitches: C++98 only mode, 32 bit build, Cuda and Android support should all be fixed in GLM 0.9.6.1 release.
Features:
Added GLM_LANG_CXX14_FLAG and GLM_LANG_CXX1Z_FLAG language feature flags
Added C++14 detection
Improvements:
Clean up GLM_MESSAGES compilation log to report only detected capabilities
Fixes:
Fixed scalar uaddCarry build error with Cuda #276
Fixed C++11 explicit conversion operators detection #282
Fixed missing explicit convertion when using integer log2 with *vec1 types
Fixed 64 bits integer GTX_string_cast to_string on VC 32 bit compiler
Fixed Android build issue, STL C++11 is not supported by the NDK #284
Fixed unsupported _BitScanForward64 and _BitScanReverse64 in VC10
Fixed Visual C++ 32 bit build #283
Fixed GLM_FORCE_SIZE_FUNC pragma message
Fixed C++98 only build
Fixed conflict between GTX_compatibility and GTC_quaternion #286
Fixed C++ language restriction using GLM_FORCE_CXX**
Download: GLM 0.9.6.1 (ZIP, 4.1 MB) (7Z, 2.7 MB)
30/11/2014 - GLM 0.9.6.0 released
GLM 0.9.6.0 is available with many changes.
Transition from degrees to radians compatibility break and GLM 0.9.5.4 help
One of the long term issue with GLM is that some functions were using radians, functions from GLSL and others were using degrees, functions from GLU or legacy OpenGL.
In GLM 0.9.5, we can use GLM_FORCE_RADIANS to force all GLM functions to adopt radians.
In GLM 0.9.5 in degrees:
#include <glm/mat4.hpp>
#include <glm/gtc/matrix_tansform.hpp>
glm::mat4 my_rotateZ(glm::mat4 const & m, float angleInRadians)
{
return glm::rotate(m, glm::degrees(angleInRadians), glm::vec3(0.0, 0.0, 1.0));
}
In GLM 0.9.5 in radians:
#define GLM_FORCE_RADIANS
#include <glm/mat4.hpp>
#include <glm/gtc/matrix_tansform.hpp>
glm::mat4 my_rotateZ(glm::mat4 const & m, float angleInRadians)
{
return glm::rotate(m, angleInRadians, glm::vec3(0.0, 0.0, 1.0));
}
In GLM 0.9.6 in radians only:
#include <glm/mat4.hpp>
#include <glm/gtc/matrix_tansform.hpp>
glm::mat4 my_rotateZ(glm::mat4 const & m, float angleInRadians)
{
return glm::rotate(m, angleInRadians, glm::vec3(0.0, 0.0, 1.0));
}
In GLM 0.9.6 if you what to use degrees anyway:
#include <glm/mat4.hpp>
#include <glm/gtc/matrix_tansform.hpp>
glm::mat4 my_rotateZ(glm::mat4 const & m, float angleInDegrees)
{
return glm::rotate(m, glm::radians(angleInDegrees), glm::vec3(0.0, 0.0, 1.0));
}
GLM 0.9.5 will show warning messages at compilation each time a function taking degrees is used.
GLM: rotate function taking degrees as a parameter is deprecated. #define GLM_FORCE_RADIANS before including GLM headers to remove this message.
If you are using a version of GLM older than GLM 0.9.5.1, update to GLM 0.9.5.4 before transitioning to GLM 0.9.6 to get this help in that process.
Make sure to build and run successfully your application with GLM 0.9.5 with GLM_FORCE_RADIANS, before transistioning to GLM 0.9.6
Finally, here is a list of all the functions that could use degrees in GLM 0.9.5.4 that requires radians in GLM 0.9.6: rotate (matrices and quaternions), perspective, perspectiveFov, infinitePerspective, tweakedInfinitePerspective, roll, pitch, yaw, angle, angleAxis, polar, euclidean, rotateNormalizedAxis, rotateX, rotateY, rotateZ and orientedAngle.
Using GLM template types
There are a lot of reasons for using template types: Writing new template classes and functions or defining new types. Unfortunately, until GLM 0.9.5, GLM template types were defined into the detail namespace indicating there are implementation details that may changed.
With GLM 0.9.6, template types are accessible from the GLM namespace and guarantee to be stable onward.
Example of template functions, GLM 0.9.5 and 0.9.6 style:
#include <glm/geometry.hpp>
#include <glm/exponential.hpp>
template <typename vecType>
typename vecType::value_type normalizeDot(vecType const & a, vecType const & b)
{
return glm::dot(a, b) * glm::inversesqrt(glm::dot(a, a) * glm::dot(b, b));
}
#include <glm/vec4.hpp>
int main()
{
return normalizeDot(glm::vec4(2.0), glm::vec4(2.0)) > 0.0f ? 0 : 1
}
Example of template functions, alternative GLM 0.9.6 style:
#include <glm/geometry.hpp>
#include <glm/exponential.hpp>
template <typename T, template <typename, glm::precision> class vecType>
T normalizeDot(vecType<T, P> const & a, vecType<T, P> const & b)
{
return glm::dot(a, b) * glm::inversesqrt(glm::dot(a, a) * glm::dot(b, b));
}
#include <glm/vec4.hpp>
int main()
{
return normalizeDot(glm::vec4(2.0), glm::vec4(2.0)) > 0.0f ? 0 : 1
}
Example of typedefs with GLM 0.9.6:
#include <cstddef>
#include <glm/vec4.hpp>
#include <glm/mat4.hpp>
typedef glm::tvec4<std::size_t> size4;
typedef glm::tvec4<long double, glm::highp> ldvec4;
typedef glm::tmat4x4<long double, glm::highp> ldmat4x4;
Optimizations
With GLM 0.9.5, the library started to tackle the issue of compilation time by introducing forward declarations through <glm/fwd.hpp> but also by providing an alternative to the monolithic <glm/glm.hpp> headers with <glm/vec2.hpp>, <glm/mat3x2.hpp> and <glm/common.hpp>, etc.
With GLM 0.9.6, the library took advantage of dropping old compilers to replace preprocessor instantiation of the code by template instantiation. The issue of preprocessor instantiation (among them!) is that all the code is generated even if it is never used resulting in building and compiling much bigger header files.
Furthermore, a lot of code optimizations have been done to provide better performance at run time by leveraging integer bitfield tricks and compiler intrinsics. The test framework has been extended to include performance tests. The total code size of the tests is now 50% of the library code which is still not enough but pretty solid.
Compilers support
GLM 0.9.6 removed support for a lot of old compiler versions. If you are really insisting in using an older compiler, you are welcome to keep using GLM 0.9.5.
Supported compilers by GLM 0.9.6:
Apple Clang 4.0 and higher
CUDA 4.0 and higher
GCC 4.4 and higher
LLVM 3.0 and higher
Intel C++ Composer XE 2013 and higher
Visual Studio 2010 and higher
Any conform C++98 compiler
Lisence
Finally, GLM is changing Lisence to adopt the Happy Bunny Lisence.
Release note
Features:
Exposed template vector and matrix types in 'glm' namespace #239, #244
Added GTX_scalar_multiplication for C++ 11 compiler only #242
Added GTX_range for C++ 11 compiler only #240
Added closestPointOnLine function for tvec2 to GTX_closest_point #238
Added GTC_vec1 extension, *vec1 support to *vec* types
Updated GTX_associated_min_max with vec1 support
Added support of precision and integers to linearRand #230
Added Integer types support to GTX_string_cast #249
Added vec3 slerp #237
Added GTX_common with isdenomal #223
Added GLM_FORCE_SIZE_FUNC to replace .length() by .size() #245
Added GLM_FORCE_NO_CTOR_INIT
Added 'uninitialize' to explicitly not initialize a GLM type
Added GTC_bitfield extension, promoted GTX_bit
Added GTC_integer extension, promoted GTX_bit and GTX_integer
Added GTC_round extension, promoted GTX_bit
Added GLM_FORCE_EXPLICIT_CTOR to require explicit type conversions #269
Added GTX_type_aligned for aligned vector, matrix and quaternion types
Improvements:
Rely on C++11 to implement isinf and isnan
Removed GLM_FORCE_CUDA, Cuda is implicitly detected
Separated Apple Clang and LLVM compiler detection
Used pragma once
Undetected C++ compiler automatically compile with GLM_FORCE_CXX98 and GLM_FORCE_PURE
Added not function (from GLSL specification) on VC12
Optimized bitfieldReverse and bitCount functions
Optimized findLSB and findMSB functions
Optimized matrix-vector multiple performance with Cuda #257, #258
Reduced integer type redifinitions #233
Rewrited of GTX_fast_trigonometry #264#265
Made types trivially copyable #263
Removed iostream in GLM tests
Used std features within GLM without redeclaring
Optimized cot function #272
Optimized sign function #272
Added explicit cast from quat to mat3 and mat4 #275
Fixes:
Fixed std::nextafter not supported with C++11 on Android #217
Fixed missing value_type for dual quaternion
Fixed return type of dual quaternion length
Fixed infinite loop in isfinite function with GCC #221
Fixed Visual Studio 14 compiler warnings
Fixed implicit conversion from another tvec2 type to another tvec2 #241
Fixed lack of consistency of quat and dualquat constructors
Fixed uaddCarray #253
Fixed float comparison warnings #270
Deprecation:
Removed degrees for function parameters
Removed GLM_FORCE_RADIANS, active by default
Removed VC 2005 / 8 and 2008 / 9 support
Removed GCC 3.4 to 4.5 support
Removed LLVM GCC support
Removed LLVM 2.6 to 2.9 support
Removed CUDA 3.0 to 4.0 support
- Missing DocStrip guards for latexrelease
package and ltcount
- Duplicate defintion of \newtoks
- Missing first char in a range in Unicode
catcode settings (XeTeX/LuaTeX usage)
- Fix accents for 0403,0453,040C,045C
with utf8 option for inputenc
* makeglossaries (Perl script):
- fixed ngerman din5007 issue.
* glossaries.sty:
- new field-related commands:
\glsaddstoragekey, \glsfielddef, \glsfieldedef,
\glsfieldgdef, \glsfieldxdef, \glsfieldfetch,
\ifglsfieldeq, \ifglsfielddefeq, \ifglsfieldcseq
- new user command \glswriteentry to hook into mechanism
that writes entry information to the external files
- new user command \glspostlinkhook to hook into end of
commands like \gls and \glstext.
- Added new acronym styles "long-sp-short" and
"long-sp-short-desc"
- bug fix: \glsadd should use \@@do at wrglossary not
\@do at wrglossary
Snapshot of SVN 5700
====================
- Fix issue which prevents expl3 loading with (u)p-TeX
- Fix issues with key path parsing by l3keys
- Fix galley interaction with \vtop and similar
- Documentation improvements
Note that the team are looking at more formalised (u)p-TeX
support: this fix maintains the abilty of expl3 to work
with these engines without formal support.
Snapshot of SVN 5666
=====================
- Update l3keys such that key properties are additive,
introducing a new .undefine: property to support this
and altering .value_forbidden:/.value_required: to
.value_forbidden:n/.value_required:n
- Fix detokenization of key names in some parts of l3keys
- Update to l3keys2e to correctly find key names following
l3keys fix
- Fix extraction of \l_keys_key_tl from \l_keys_path_tl
- Update case changing data for Unicode 8.0.0
- Reintroduce minimal LuaTeX-specific functions as l3luatex
- Remove function deprecated during 2012 and 2013
- Extend saving of primitive (\<engine>_<name>:D)
to cover all XeTeX and LuaTeX names including
those for Unicode math handling
fonts/tex-Asana-Math to 000.955
fonts/tex-archaic to 2015
fonts/tex-fbb to 1.08a
fonts/tex-fge to 1.25
fonts/tex-garuda-c90 to 2015
fonts/tex-musixtex-fonts to 2015
fonts/tex-newpx to 1.292
fonts/tex-newtx to 1.451
fonts/tex-newtxsf to 1.03
fonts/tex-newtxtt to 1.052
fonts/tex-norasi-c90 to 2015
fonts/tex-rsfso to 1.02
fonts/tex-xcharter to 1.075
minor features
pkgsrc changes:
- new version of core sounds
- add options for SNMP and PostgreSQL from Mike Bowie in PR/49661
and by popular demand
- add back support for menuselect personalization as that's how I was
doing menuselect non-interactively
- XXX need to look at a better way of doing this
- disable PJSIP for now as it doesn't work well on NetBSD from Mike Bowie
Since I added an option for PostgreSQL I also looked at adding an
option for directly using MySQL. Turns out that all the MySQL
modules are in the addons directory and are marked as being
deprecated. So I didn't bother. While investigating this, I also
noted that all the pgsql modules are marked as "extended" support.
This basically means that it is supported by the community, but
there is no one person listed as being responsible who would take
the lead for maintaining them. This basically means that they are
unsupported / low priority. See
https://wiki.asterisk.org/wiki/display/AST/Asterisk+Module+Support+States .
Also with the pgsql modules, there is no way to do a database query
from the dialplan. Thus it is recommended to use the unixodbc
option as the modules are supported and offer the most functionality.
-----
The Asterisk Development Team has announced the release of Asterisk 11.19.0.
The release of Asterisk 11.19.0 resolves several issues reported by the
community and would have not been possible without your participation.
Thank you!
The following are the issues resolved in this release:
Bugs fixed in this release:
-----------------------------------
* ASTERISK-25250 - chan_sip - Despite the channel being answered,
caller on a call established via Local channel continues to hear
ringback (Reported by Etienne Lessard)
* ASTERISK-25247 - choppy audio when spying on a g722 channel,
chan_sip or chan_pjsip (Reported by hristo)
* ASTERISK-24853 - Documentation claims chan_sip outbound
registrations support WS or WSS as valid transports (not true)
(Reported by PSDK)
* ASTERISK-25257 - [patch]channels/sig_pri.h -> sig_pri_span ->
force_restart_unavailable_chans in wrong scope (Reported by
Patric Marschall)
* ASTERISK-25103 - Roundup - investigate Asterisk DTLS crashes
(Reported by Rusty Newton)
* ASTERISK-22805 - res_rtp_asterisk: Crash when calling
BIO_ctrl_pending in dtls_srtp_check_pending when dialed by JSSIP
(Reported by Dmitry Burilov)
* ASTERISK-24550 - res_rtp_asterisk: Crash in
ast_rtp_on_ice_complete during DTLS handshake (Reported by
Osaulenko Alexander)
* ASTERISK-24651 - [patch] Fix race condition in DTLS (Reported by
Badalian Vyacheslav)
* ASTERISK-24832 - [patch]DTLS-crashes within openssl (Reported
by Stefan Engström)
* ASTERISK-25127 - DTLS crashes following "Unable to cancel
schedule ID" in dtls_srtp_check_pending (Reported by Dade
Brandon)
* ASTERISK-25213 - [patch]Possibility of deadlock in chan_sip
INVITE early Replace code (Reported by Walter Doekes)
* ASTERISK-25220 - [patch]Closing of fd -1 in chan_mgcp.c
(Reported by Walter Doekes)
* ASTERISK-25219 - [patch]Source and destination overlap in memcpy
in rtp_engine.c (Reported by Walter Doekes)
* ASTERISK-25212 - [patch]Segfault when using DEBUG_FD_LEAKS
(Reported by Walter Doekes)
* ASTERISK-19277 - [patch]endlessly repeating error: "poll failed:
Bad file descriptor" (Reported by Barry Chern)
* ASTERISK-25202 - Hints extension state broken between 13.3.2 and
13.4 (Reported by cervajs)
* ASTERISK-25154 - [patch]fromtag may need to be updated after
successful call dialog match (Reported by Damian Ivereigh)
* ASTERISK-25139 - Malicious transfer sequence locks up Asterisk
(Reported by Gregory Massel)
* ASTERISK-25094 - PBX core: Investigate thread safety issues
(Reported by Corey Farrell)
* ASTERISK-22559 - gcc 4.6 and higher supports weakref attribute
but asterisk doesn't detect it. (Reported by ibercom)
* ASTERISK-24717 - ASAN: global-buffer-overflow codec_{ilbc | gsm
| adpcm | ipc10} (Reported by Badalian Vyacheslav)
* ASTERISK-25100 - asterisk coredump if host has an IPv6 address
that end with ::80 (Reported by Mark Petersen)
Improvements made in this release:
-----------------------------------
* ASTERISK-25040 - pbx: Improve performance of reloads by making
hint destruction more performant (Reported by Matt Jordan)
For a full list of changes in this release, please see the ChangeLog:
http://downloads.asterisk.org/pub/telephony/asterisk/ChangeLog-11.19.0
Thank you for your continued support of Asterisk!
-----
The Asterisk Development Team has announced the release of Asterisk 11.18.0.
The release of Asterisk 11.18.0 resolves several issues reported by the
community and would have not been possible without your participation.
Thank you!
The following are the issues resolved in this release:
Bugs fixed in this release:
-----------------------------------
* ASTERISK-25112 - Logger: Configuration settings are not reset to
default during reload. (Reported by Corey Farrell)
* ASTERISK-24887 - [patch]tags in a=crypto lines do not accept 2
or more digits (Reported by Makoto Dei)
* ASTERISK-24944 - main/audiohook.c change prevents G722 call
recording (Reported by Ronald Raikes)
* ASTERISK-25083 - Message.c: Message channel becomes saturated
with frames leading to spammy log messages (Reported by Jonathan
Rose)
* ASTERISK-25041 - [patch]Broken column type checking in
res_config_mysql addon (Reported by Alexandre Fournier)
* ASTERISK-21893 - Segfault after call hangup, in
ast_channel_hangupcause_set, at channel_internal_api.c (Reported
by Alexandr Gordeev)
* ASTERISK-25074 - Regression: Recent clang-related change broke
cross compiling of Asterisk (Reported by Sebastian Kemper)
* ASTERISK-25042 - asterisk.conf options override command-line
options. (Reported by Corey Farrell)
* ASTERISK-24442 - Outgoing call files don't work properly when
set in the future (Reported by tootai)
* ASTERISK-25034 - chan_dahdi: Some telco switches occasionally
ignore ISDN RESTART requests. (Reported by Richard Mudgett)
* ASTERISK-25038 - Queue log "EXITWITHTIMEOUT" does not always
contain waiting time (Reported by Etienne Lessard)
* ASTERISK-22708 - res_odbc.conf negative_connection_cache option
not respected, failover between DSNs doesn't work (Reported by
JoshE)
* ASTERISK-25028 - Build System: Unneeded defines in
asterisk/buildopts.h (Reported by Corey Farrell)
* ASTERISK-19608 - Asterisk-1.8.x starts rejecting calls with
cause code 44 after some time. (Reported by Denis Alberto
Martinez)
* ASTERISK-24976 - cdr_odbc not include new columns added on 1.8
(Reported by Rodrigo Ramirez Norambuena)
* ASTERISK-25022 - Memory leak setting up DTLS/SRTP calls
(Reported by Steve Davies)
* ASTERISK-22790 - check_modem_rate() may return incorrect rate
for V.27 (Reported by not here)
* ASTERISK-23231 - Since 405693 If we have res_fax.conf file set
to minrate=2400, then res_fax refuse to load (Reported by David
Brillert)
* ASTERISK-24955 - res_fax: v.27ter support baud rate of 2400,
which is disallowed in res_fax's check_modem_rate (Reported by
Matt Jordan)
* ASTERISK-24916 - Increasing memory usage when multiple reinvite
during call (Reported by Christophe Osuna)
* ASTERISK-19538 - Asterisk segfaults on sippeers realtime
redundancy (Reported by Alex)
* ASTERISK-24749 - ConfBridge: Wrong language on playing
conf-hasjoin and conf-hasleft when played to bridge (Reported by
Philippe Bolduc)
* ASTERISK-24991 - Check for ao2_alloc failure in
__ast_channel_internal_alloc (Reported by Corey Farrell)
* ASTERISK-24895 - After hangup on the side of the ISDN network no
HangupRequest event comes for the dahdi channel. (Reported by
Andrew Zherdin)
* ASTERISK-24774 - Segfault in ast_context_destroy with
extensions.ael and extensions.conf (Reported by Corey Farrell)
* ASTERISK-24975 - Enabling 'DEBUG_THREADLOCALS' Causes the Build
to Fail (Reported by Ashley Sanders)
* ASTERISK-24959 - [patch]CLI command cdr show pgsql status
(Reported by Rodrigo Ramirez Norambuena)
* ASTERISK-24954 - Git migration: Asterisk version numbers are
incompatible with the Test Suite (Reported by Matt Jordan)
* ASTERISK-21777 - Asterisk tries to transcode video instead of
audio (Reported by Nick Ruggles)
* ASTERISK-24380 - core: Native formats are set to h264 with
certain audio/video codec configuration, resulting in path
translation WARNINGs (Reported by Matt Jordan)
* ASTERISK-22352 - [patch] IAX2 custom qualify timer is not taken
into account (Reported by Frederic Van Espen)
* ASTERISK-24894 - [patch] iax2_poke_noanswer expiration timer too
short (Reported by Y Ateya)
* ASTERISK-23319 - Segmentation fault in queue_exec at app_queue.c
(Reported by Vadim)
* ASTERISK-24847 - [security] [patch] tcptls: certificate CN NULL
byte prefix bug (Reported by Matt Jordan)
* ASTERISK-21211 - chan_iax2 - unprotected access of
iaxs[peer->callno] potentially results in segfault (Reported by
Jaco Kroon)
* ASTERISK-18032 - [patch] - IPv6 and IPv4 NAT not working
(Reported by Christoph Timm)
* ASTERISK-24942 - Voicemail API: message is deleted when
destination mailbox is at maxmsg (Reported by Scott Griepentrog)
* ASTERISK-24932 - Asterisk 13.x does not build with GCC 5.0
(Reported by Jeffrey C. Ollie)
* ASTERISK-21854 - Long Asterisk-version strings display
improperly in the 'Connected to ...' line upon remote console
connection (Reported by klaus3000)
* ASTERISK-24155 - [patch]Non-portable and non-reliable recursion
detection in ast_malloc (Reported by Timo Teräs)
* ASTERISK-24142 - CCSS: crash during shutdown due to device
lookup in destroyed container (Reported by David Brillert)
* ASTERISK-24683 - Crash in PBX ast_hashtab_lookup_internal during
core restart now (Reported by Peter Katzmann)
* ASTERISK-24805 - [patch] - ASAN: Race condition
(heap-use-after-free) on asterisk closing (Reported by Badalian
Vyacheslav)
* ASTERISK-24881 - ast_register_atexit should only be used when
absolutely needed (Reported by Corey Farrell)
* ASTERISK-24864 - app_confbridge: file playback blocks dtmf
(Reported by Kevin Harwell)
* ASTERISK-14233 - [patch] Buddies are always auto-registered when
processing the roster (Reported by Simon Arlott)
* ASTERISK-24780 - [patch] - Buddies are always auto-registered
when processing the roster (Reported by Simon Arlott)
Improvements made in this release:
-----------------------------------
* ASTERISK-24744 - Swedish Core Voice prompts (Reported by Tove
Hjelm)
* ASTERISK-25043 - [patch] Avoiding ERR_remove_state in OpenSSL
(Reported by Alexander Traud)
* ASTERISK-24917 - [patch] clang compilation warnings (Reported by
Diederik de Groot)
* ASTERISK-25040 - pbx: Improve performance of reloads by making
hint destruction more performant (Reported by Matt Jordan)
* ASTERISK-24965 - cel_pgsql - log_error string references CDR
instead of CEL (Reported by Rodrigo Ramirez Norambuena)
For a full list of changes in this release, please see the ChangeLog:
http://downloads.asterisk.org/pub/telephony/asterisk/ChangeLog-11.18.0
Thank you for your continued support of Asterisk!