Files
asterisk/ChangeLogs/ChangeLog-21.1.0-rc2.md
Asterisk Development Team 2310df0ff6 Update for 21.1.0-rc2
2024-01-18 16:48:17 +00:00

1.6 KiB

Change Log for Release asterisk-21.1.0-rc2

Summary:

  • logger: Fix linking regression.

User Notes:

Upgrade Notes:

Closed Issues:

  • #539: [bug]: Existence of logger.xml causes linking failure

Commits By Author:

  • Naveen Albert (1):

    • logger: Fix linking regression.

Detail:

  • logger: Fix linking regression.

    Author: Naveen Albert
    Date: 2024-01-16

    Commit 008731b0a4 caused a regression by resulting in logger.xml being compiled and linked into the asterisk binary in lieu of logger.c on certain platforms if Asterisk was compiled in dev mode.

    To fix this, we ensure the file has a unique name without the extension. Most existing .xml files have been named differently from any .c files in the same directory or did not pose this issue.

    channels/pjsip/dialplan_functions.xml does not pose this issue but is also being renamed to adhere to this policy.

    Resolves: #539