Skip to content

Commit

Permalink
build: configure: symbol may also be of PROTECTED visibility
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Pokorný <[email protected]>
  • Loading branch information
jnpkrn committed Sep 4, 2018
1 parent 3af6104 commit c44bcfa
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -729,9 +729,10 @@ if test "x${GCC}" = xyes; then
'/__start___verbose/{s/^[[[[:space:]]]]*//p;q;}' \
| tr -s ' ' \
| cut -d" " -f6)
test "${verbose_start_type}" = DEFAULT \
&& gcc_has_attribute_section_visible=yes \
|| gcc_has_attribute_section_visible=no; }],
case "${verbose_start_type}" in
DEFAULT|PROTECTED) gcc_has_attribute_section_visible=yes;;
*) gcc_has_attribute_section_visible=no;;
esac; }],
[gcc_has_attribute_section_visible=no]
)
AX_RESTORE_FLAGS
Expand Down

0 comments on commit c44bcfa

Please sign in to comment.