]> git.ipfire.org Git - thirdparty/asterisk.git/commit
menuselect: Remove ineffective weak attribute detection.
authorCorey Farrell <git@cfware.com>
Sat, 11 Nov 2017 16:09:29 +0000 (11:09 -0500)
committerCorey Farrell <git@cfware.com>
Fri, 17 Nov 2017 15:39:08 +0000 (10:39 -0500)
commitb9f4bb59887bd5520b88505acfcc2f4eff0e7e66
tree8e968748dc8e1cd5bbbdfcfbd76bcabae016e2e9
parent4181b6f3777655efa5f0523a8d2ab2b0e5e566fb
menuselect: Remove ineffective weak attribute detection.

menuselect detects compiler support for multiple styles of weak
functions.  This is a remnant from 2013 when OPTIONAL_API required weak
functions.  It is no longer correct for menuselect to switch
dependencies from optional to required based on lack of weak function
support.

Note an issue remains - dependencies should switch from optional to
required based on OPTIONAL_API being enabled or disabled.  I don't think
this is possible.  menuselect needs to know at startup if OPTIONAL_API
is enabled or disabled, so the only way to fix this is to remove
OPTIONAL_API from menuselect and create a configure option.  I've left
the code that switches in place but it's preprocessed out.

Additionally removed:
- WEAKREF variable from Asterisk makeopts.in.
- Related disabled code from test_utils.
- Pointless AC_REVISION call from menuselect/configure.ac.

Change-Id: Ifa702e5f98eb45f338b2f131a93354632a8fb389
makeopts.in
menuselect/autoconfig.h.in
menuselect/configure
menuselect/configure.ac
menuselect/menuselect.c
tests/test_utils.c